BlogEngine.Core.Providers.XmlFileSystemProvider.DirectoryExists C# (CSharp) Method

DirectoryExists() public method

Returns wether or not the specific directory by virtual path exists
public DirectoryExists ( string VirtualPath ) : bool
VirtualPath string The virtual path to query
return bool
        public override bool DirectoryExists(string VirtualPath)
        {
            VirtualPath = VirtualPath.Trim();
            var aPath = BlogAbsolutePath(VirtualPath);
            return Directory.Exists(aPath);
        }