Table of Contents

Class DirectoryInfo

Namespace
Kentico.Xperience.AmazonStorage
Assembly
Kentico.Xperience.AmazonStorage.dll

Directory info for Amazon storage provider

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

Constructors

DirectoryInfo(string)

Constructor.

public DirectoryInfo(string path)

Parameters

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 file 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 files that matches searchPattern and searchOption.

EnumerateFilesInternal(string, SearchOption)

Returns an enumerable collection of directory 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 directories that matches searchPattern and searchOption.

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 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 files of the current directory.

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

Parameters

searchPattern string

Search pattern.

searchOption SearchOption

Search option.

Returns

FileInfo[]