VirtualPathProvider.GetDirectory(String) Method

Definition

Gets a virtual directory from the virtual file system.

C#
public virtual System.Web.Hosting.VirtualDirectory GetDirectory(string virtualDir);

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.

C#
public override VirtualDirectory GetDirectory(string virtualDir)
{
  if (IsPathVirtual(virtualDir))
    return new SampleVirtualDirectory(virtualDir, this);
  else
    return Previous.GetDirectory(virtualDir);
}

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.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1