Edit

Share via


VirtualPathProvider.DirectoryExists(String) Method

Definition

Gets a value that indicates whether a directory exists in the virtual file system.

C#
public virtual bool DirectoryExists(string virtualDir);

Parameters

virtualDir
String

The path to the virtual directory.

Returns

true if the directory exists in the virtual file system; otherwise, false.

Examples

The following code example is an implementation of the DirectoryExists 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 bool DirectoryExists(string virtualDir)
{
  if (IsPathVirtual(virtualDir))
  {
    SampleVirtualDirectory dir = (SampleVirtualDirectory)GetDirectory(virtualDir);
    return dir.Exists;
  }
  else
        {
            return Previous.DirectoryExists(virtualDir);
        }
    }

Remarks

Override the DirectoryExists method to indicate to the compilation system that the resource represented by virtualDir exists in the virtual file system provided by this VirtualPathProvider instance.

If your custom VirtualPathProvider class does not support directories, the DirectoryExists method should return false.

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