VirtualPathProvider.GetDirectory(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a virtual directory from the virtual file system.
public:
virtual System::Web::Hosting::VirtualDirectory ^ GetDirectory(System::String ^ virtualDir);
public virtual System.Web.Hosting.VirtualDirectory GetDirectory (string virtualDir);
abstract member GetDirectory : string -> System.Web.Hosting.VirtualDirectory
override this.GetDirectory : string -> System.Web.Hosting.VirtualDirectory
Public Overridable Function GetDirectory (virtualDir As String) As VirtualDirectory
Parameters
- virtualDir
- String
The path to the virtual directory.
Returns
A descendent of the VirtualDirectory class that represents a directory in the virtual file system.
Examples
The following code example is an implementation of the GetDirectory method in a custom VirtualPathProvider class. For the full code required to run the example, see the Example section of the VirtualPathProvider class overview topic.
public override VirtualDirectory GetDirectory(string virtualDir)
{
if (IsPathVirtual(virtualDir))
return new SampleVirtualDirectory(virtualDir, this);
else
return Previous.GetDirectory(virtualDir);
}
Public Overrides Function GetDirectory(ByVal virtualDir As String) As VirtualDirectory
If (IsPathVirtual(virtualDir)) Then
Return New SampleVirtualDirectory(virtualDir, Me)
Else
Return Previous.GetDirectory(virtualDir)
End If
End Function
Remarks
The GetDirectory method returns a descendent of the VirtualDirectory class that contains the file and directories contained in the directory specified in the virtualDir
parameter.
If your custom VirtualPathProvider class does not support directories, the GetDirectory method should return null
.
Note
If your virtual file system will contain themes for the Web site (by creating a virtual App_Themes
directory), your custom VirtualPathProvider class must support directories.