Class ZipDirectoryInfo
Directory operation provider for zip files
public sealed class ZipDirectoryInfo : DirectoryInfo
- Inheritance
-
objectZipDirectoryInfo
- Inherited Members
- Extension Methods
Constructors
ZipDirectoryInfo(ZipStorageProvider, string)
Constructor.
public ZipDirectoryInfo(ZipStorageProvider provider, string path)
Parameters
provider
ZipStorageProviderParent provider
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 the subdirectories of the current directory.
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[]
RegisterDirectory(ZipDirectoryInfo)
Registers the subdirectory within the directory
public void RegisterDirectory(ZipDirectoryInfo dir)
Parameters
dir
ZipDirectoryInfo
RegisterFile(ZipFileInfo)
Registers the file within the directory
public void RegisterFile(ZipFileInfo file)
Parameters
file
ZipFileInfo