C# 클래스 Achilles.Acme.Storage.IO.Directory

Cloud Storage to System.IO Bridge Directory class.
파일 보기 프로젝트 열기: Achilles-Software/CloudStorageProvider

공개 메소드들

메소드 설명
CreateDirectory ( string path ) : DirectoryInfo
Delete ( string path ) : void

Deletes an empty directory from a specified path.

Delete ( string path, bool recursive ) : void
Exists ( string path ) : bool
GetCreationTime ( string path ) : System.DateTime
GetCurrentDirectory ( ) : string
GetDirectories ( string path ) : string[]

Gets a list of directory names with the specified directory path.

GetDirectoryRoot ( string path ) : string
GetFiles ( string sDirPath ) : string[]
GetLastAccessTime ( string path ) : System.DateTime
GetLastWriteTime ( string path ) : System.DateTime
GetParent ( string path ) : DirectoryInfo
SetCreationTime ( string path, System.DateTime creationTime ) : void
SetCurrentDirectory ( string path ) : void
SetLastAccessTime ( string path, System.DateTime lastAccessTime ) : void
SetLastWriteTime ( string path, System.DateTime lastWriteTime ) : void

메소드 상세

CreateDirectory() 공개 정적인 메소드

public static CreateDirectory ( string path ) : DirectoryInfo
path string
리턴 DirectoryInfo

Delete() 공개 정적인 메소드

Deletes an empty directory from a specified path.
public static Delete ( string path ) : void
path string Path for directory to delete.
리턴 void

Delete() 공개 정적인 메소드

public static Delete ( string path, bool recursive ) : void
path string
recursive bool
리턴 void

Exists() 공개 정적인 메소드

public static Exists ( string path ) : bool
path string
리턴 bool

GetCreationTime() 공개 정적인 메소드

public static GetCreationTime ( string path ) : System.DateTime
path string
리턴 System.DateTime

GetCurrentDirectory() 공개 정적인 메소드

public static GetCurrentDirectory ( ) : string
리턴 string

GetDirectories() 공개 정적인 메소드

Gets a list of directory names with the specified directory path.
public static GetDirectories ( string path ) : string[]
path string directory path
리턴 string[]

GetDirectoryRoot() 공개 정적인 메소드

public static GetDirectoryRoot ( string path ) : string
path string
리턴 string

GetFiles() 공개 정적인 메소드

public static GetFiles ( string sDirPath ) : string[]
sDirPath string
리턴 string[]

GetLastAccessTime() 공개 정적인 메소드

public static GetLastAccessTime ( string path ) : System.DateTime
path string
리턴 System.DateTime

GetLastWriteTime() 공개 정적인 메소드

public static GetLastWriteTime ( string path ) : System.DateTime
path string
리턴 System.DateTime

GetParent() 공개 정적인 메소드

public static GetParent ( string path ) : DirectoryInfo
path string
리턴 DirectoryInfo

SetCreationTime() 공개 정적인 메소드

public static SetCreationTime ( string path, System.DateTime creationTime ) : void
path string
creationTime System.DateTime
리턴 void

SetCurrentDirectory() 공개 정적인 메소드

public static SetCurrentDirectory ( string path ) : void
path string
리턴 void

SetLastAccessTime() 공개 정적인 메소드

public static SetLastAccessTime ( string path, System.DateTime lastAccessTime ) : void
path string
lastAccessTime System.DateTime
리턴 void

SetLastWriteTime() 공개 정적인 메소드

public static SetLastWriteTime ( string path, System.DateTime lastWriteTime ) : void
path string
lastWriteTime System.DateTime
리턴 void