Class DirectoryInfo
- Namespace
- CMS.FileSystemStorage
- Assembly
- CMS.IO.dll
Envelope for System.IO.DirectoryInfo.
public class DirectoryInfo : DirectoryInfo
- Inheritance
-
objectDirectoryInfo
- Inherited Members
- Extension Methods
Constructors
DirectoryInfo(string)
Constructor.
public DirectoryInfo(string path)
Parameters
path
stringPath to directory
Properties
CreationTime
Creation time.
public override DateTime CreationTime { get; set; }
Property Value
- DateTime
Exists
Whether directory exists.
public override bool Exists { get; set; }
Property Value
- bool
FullName
Full name of directory (whole path).
public override string FullName { get; set; }
Property Value
- string
LastWriteTime
Last write time to directory.
public override DateTime LastWriteTime { get; set; }
Property Value
- DateTime
Name
Name of directory (without path).
public override string Name { get; set; }
Property Value
- string
Parent
Parent directory.
public override DirectoryInfo Parent { get; }
Property Value
Methods
CreateSubdirectoryInternal(string)
Creates subdirectory.
protected override DirectoryInfo CreateSubdirectoryInternal(string subdir)
Parameters
subdir
stringSubdirectory to create
Returns
DeleteInternal()
Deletes directory.
protected override void DeleteInternal()
EnumerateDirectoriesInternal(string, SearchOption)
Returns an enumerable collection of directory information that matches a specified search pattern and search subdirectory option.
protected override IEnumerable<DirectoryInfo> EnumerateDirectoriesInternal(string searchPattern, SearchOption searchOption)
Parameters
searchPattern
stringSearch pattern.
searchOption
SearchOptionOne of the enumeration values that specifies whether the search operation should include only the current directory or all subdirectories.
Returns
- IEnumerable<DirectoryInfo>
An enumerable collection of directories that matches
searchPattern
andsearchOption
.
EnumerateFilesInternal(string, SearchOption)
Returns an enumerable collection of file information that matches a specified search pattern and search subdirectory option.
protected override IEnumerable<FileInfo> EnumerateFilesInternal(string searchPattern, SearchOption searchOption)
Parameters
searchPattern
stringSearch pattern.
searchOption
SearchOptionOne of the enumeration values that specifies whether the search operation should include only the current directory or all subdirectories.
Returns
- IEnumerable<FileInfo>
An enumerable collection of files that matches
searchPattern
andsearchOption
.
GetDirectoriesInternal(string, SearchOption)
Returns an array of directories in the current DirectoryInfo matching the given search criteria and using a value to determine whether to search subdirectories.
protected override DirectoryInfo[] GetDirectoriesInternal(string searchPattern, SearchOption searchOption)
Parameters
searchPattern
stringSearch pattern
searchOption
SearchOptionSpecifies whether to search the current directory, or the current directory and all subdirectories.
Returns
GetFilesInternal(string, SearchOption)
Returns a file list from the current directory.
protected override FileInfo[] GetFilesInternal(string searchPattern, SearchOption searchOption)
Parameters
searchPattern
stringSearch pattern
searchOption
SearchOptionSearch options
Returns
- FileInfo[]