Table of Contents

Class ZipDirectoryInfo

Namespace
CMS.IO.Zip
Assembly
CMS.IO.dll

Directory operation provider for zip files

public sealed class ZipDirectoryInfo : DirectoryInfo
Inheritance
object
ZipDirectoryInfo
Inherited Members
Extension Methods

Constructors

ZipDirectoryInfo(ZipStorageProvider, string)

Constructor.

public ZipDirectoryInfo(ZipStorageProvider provider, string path)

Parameters

provider ZipStorageProvider

Parent provider

path string

Path 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

DirectoryInfo

Methods

CreateSubdirectoryInternal(string)

Creates subdirectory.

protected override DirectoryInfo CreateSubdirectoryInternal(string subdir)

Parameters

subdir string

Subdirectory to create

Returns

DirectoryInfo

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 string

Search pattern.

searchOption SearchOption

One 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 and searchOption.

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 string

Search pattern.

searchOption SearchOption

One 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 and searchOption.

GetDirectoriesInternal(string, SearchOption)

Returns the subdirectories of the current directory.

protected override DirectoryInfo[] GetDirectoriesInternal(string searchPattern, SearchOption searchOption)

Parameters

searchPattern string

Search pattern

searchOption SearchOption

Specifies whether to search the current directory, or the current directory and all subdirectories.

Returns

DirectoryInfo[]

GetFilesInternal(string, SearchOption)

Returns a file list from the current directory.

protected override FileInfo[] GetFilesInternal(string searchPattern, SearchOption searchOption)

Parameters

searchPattern string

Search pattern

searchOption SearchOption

Search 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