예제 #1
0
 /// <summary>
 /// Returns wether or not the specific directory by virtual path exists
 /// </summary>
 /// <param name="VirtualPath">The virtual path to query</param>
 /// <returns>boolean</returns>
 public static bool DirectoryExists(string VirtualPath)
 {
     return(FileSystemProvider.DirectoryExists(VirtualPath));
 }
예제 #2
0
 public static bool DirectoryExists(string directoryName)
 {
     return(FileSystemProvider.DirectoryExists(directoryName));
 }