Method | Description | |
---|---|---|
CreateDirectory ( string path ) : |
||
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 ) : |
||
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 |
public static CreateDirectory ( string path ) : |
||
path | string | |
return |
public static Delete ( string path ) : void | ||
path | string | Path for directory to delete. |
return | void |
public static Delete ( string path, bool recursive ) : void | ||
path | string | |
recursive | bool | |
return | void |
public static GetCreationTime ( string path ) : System.DateTime | ||
path | string | |
return | System.DateTime |
public static GetCurrentDirectory ( ) : string | ||
return | string |
public static GetDirectories ( string path ) : string[] | ||
path | string | directory path |
return | string[] |
public static GetDirectoryRoot ( string path ) : string | ||
path | string | |
return | string |
public static GetFiles ( string sDirPath ) : string[] | ||
sDirPath | string | |
return | string[] |
public static GetLastAccessTime ( string path ) : System.DateTime | ||
path | string | |
return | System.DateTime |
public static GetLastWriteTime ( string path ) : System.DateTime | ||
path | string | |
return | System.DateTime |
public static GetParent ( string path ) : |
||
path | string | |
return |
public static SetCreationTime ( string path, System.DateTime creationTime ) : void | ||
path | string | |
creationTime | System.DateTime | |
return | void |
public static SetCurrentDirectory ( string path ) : void | ||
path | string | |
return | void |
public static SetLastAccessTime ( string path, System.DateTime lastAccessTime ) : void | ||
path | string | |
lastAccessTime | System.DateTime | |
return | void |
public static SetLastWriteTime ( string path, System.DateTime lastWriteTime ) : void | ||
path | string | |
lastWriteTime | System.DateTime | |
return | void |