Method | Description | |
---|---|---|
CreateDirectory ( string path ) : |
Creates the directory.
|
|
CreateDirectory ( string path, |
Creates the directory.
|
|
Delete ( string path ) : void |
Deletes the specified path.
|
|
Delete ( string path, bool recursive ) : void |
Deletes the specified path.
|
|
Exists ( string path ) : bool |
Existses the specified path.
|
|
GetAccessControl ( string path ) : |
Gets the access control.
|
|
GetAccessControl ( string path, AccessControlSections includeSections ) : |
Gets the access control.
|
|
GetCreationTime ( string path ) : System.DateTime |
Gets the creation time.
|
|
GetCreationTimeUtc ( string path ) : System.DateTime |
Gets the creation time UTC.
|
|
GetCurrentDirectory ( ) : string |
Gets the current directory.
|
|
GetDirectories ( string path ) : string[] |
Gets the directories.
|
|
GetDirectories ( string path, string searchPattern ) : string[] |
Gets the directories.
|
|
GetDirectories ( string path, string searchPattern, SearchOption searchOption ) : string[] |
Gets the directories.
|
|
GetDirectoryRoot ( string path ) : string |
Gets the directory root.
|
|
GetFileSystemEntries ( string path ) : string[] |
Gets the file system entries.
|
|
GetFileSystemEntries ( string path, string searchPattern ) : string[] |
Gets the file system entries.
|
|
GetFiles ( string path ) : string[] |
Gets the files.
|
|
GetFiles ( string path, string searchPattern ) : string[] |
Gets the files.
|
|
GetFiles ( string path, string searchPattern, SearchOption searchOption ) : string[] |
Gets the files.
|
|
GetLastAccessTime ( string path ) : System.DateTime |
Gets the last access time.
|
|
GetLastAccessTimeUtc ( string path ) : System.DateTime |
Gets the last access time UTC.
|
|
GetLastWriteTime ( string path ) : System.DateTime |
Gets the last write time.
|
|
GetLastWriteTimeUtc ( string path ) : System.DateTime |
Gets the last write time UTC.
|
|
GetLogicalDrives ( ) : string[] |
Gets the logical drives.
|
|
GetParent ( string path ) : |
Gets the parent.
|
|
Move ( string sourceDirName, string destDirName ) : void |
Moves the specified source dir name.
|
|
SetAccessControl ( string path, |
Sets the access control.
|
|
SetCreationTime ( string path, System.DateTime creationTime ) : void |
Sets the creation time.
|
|
SetCreationTimeUtc ( string path, System.DateTime creationTimeUtc ) : void |
Sets the creation time UTC.
|
|
SetCurrentDirectory ( string path ) : void |
Sets the current directory.
|
|
SetLastAccessTime ( string path, System.DateTime lastAccessTime ) : void |
Sets the last access time.
|
|
SetLastAccessTimeUtc ( string path, System.DateTime lastAccessTimeUtc ) : void |
Sets the last access time UTC.
|
|
SetLastWriteTime ( string path, System.DateTime lastWriteTime ) : void |
Sets the last write time.
|
|
SetLastWriteTimeUtc ( string path, System.DateTime lastWriteTimeUtc ) : void |
Sets the last write time UTC.
|
public CreateDirectory ( string path ) : |
||
path | string | The path. |
return |
public CreateDirectory ( string path, |
||
path | string | The path. |
directorySecurity | The directory security. | |
return |
public Delete ( string path, bool recursive ) : void | ||
path | string | The path. |
recursive | bool | if set to |
return | void |
public GetAccessControl ( string path ) : |
||
path | string | The path. |
return |
public GetAccessControl ( string path, AccessControlSections includeSections ) : |
||
path | string | The path. |
includeSections | AccessControlSections | The include sections. |
return |
public GetCreationTime ( string path ) : System.DateTime | ||
path | string | The path. |
return | System.DateTime |
public GetCreationTimeUtc ( string path ) : System.DateTime | ||
path | string | The path. |
return | System.DateTime |
public GetDirectories ( string path ) : string[] | ||
path | string | The path. |
return | string[] |
public GetDirectories ( string path, string searchPattern ) : string[] | ||
path | string | The path. |
searchPattern | string | The search pattern. |
return | string[] |
public GetDirectories ( string path, string searchPattern, SearchOption searchOption ) : string[] | ||
path | string | The path. |
searchPattern | string | The search pattern. |
searchOption | SearchOption | The search option. |
return | string[] |
public GetDirectoryRoot ( string path ) : string | ||
path | string | The path. |
return | string |
public GetFileSystemEntries ( string path ) : string[] | ||
path | string | The path. |
return | string[] |
public GetFileSystemEntries ( string path, string searchPattern ) : string[] | ||
path | string | The path. |
searchPattern | string | The search pattern. |
return | string[] |
public GetFiles ( string path ) : string[] | ||
path | string | The path. |
return | string[] |
public GetFiles ( string path, string searchPattern ) : string[] | ||
path | string | The path. |
searchPattern | string | The search pattern. |
return | string[] |
public GetFiles ( string path, string searchPattern, SearchOption searchOption ) : string[] | ||
path | string | The path. |
searchPattern | string | The search pattern. |
searchOption | SearchOption | The search option. |
return | string[] |
public GetLastAccessTime ( string path ) : System.DateTime | ||
path | string | The path. |
return | System.DateTime |
public GetLastAccessTimeUtc ( string path ) : System.DateTime | ||
path | string | The path. |
return | System.DateTime |
public GetLastWriteTime ( string path ) : System.DateTime | ||
path | string | The path. |
return | System.DateTime |
public GetLastWriteTimeUtc ( string path ) : System.DateTime | ||
path | string | The path. |
return | System.DateTime |
public GetParent ( string path ) : |
||
path | string | The path. |
return |
public Move ( string sourceDirName, string destDirName ) : void | ||
sourceDirName | string | Name of the source dir. |
destDirName | string | Name of the dest dir. |
return | void |
public SetAccessControl ( string path, |
||
path | string | The path. |
directorySecurity | The directory security. | |
return | void |
public SetCreationTime ( string path, System.DateTime creationTime ) : void | ||
path | string | The path. |
creationTime | System.DateTime | The creation time. |
return | void |
public SetCreationTimeUtc ( string path, System.DateTime creationTimeUtc ) : void | ||
path | string | The path. |
creationTimeUtc | System.DateTime | The creation time UTC. |
return | void |
public SetCurrentDirectory ( string path ) : void | ||
path | string | The path. |
return | void |
public SetLastAccessTime ( string path, System.DateTime lastAccessTime ) : void | ||
path | string | The path. |
lastAccessTime | System.DateTime | The last access time. |
return | void |
public SetLastAccessTimeUtc ( string path, System.DateTime lastAccessTimeUtc ) : void | ||
path | string | The path. |
lastAccessTimeUtc | System.DateTime | The last access time UTC. |
return | void |
public SetLastWriteTime ( string path, System.DateTime lastWriteTime ) : void | ||
path | string | The path. |
lastWriteTime | System.DateTime | The last write time. |
return | void |
public SetLastWriteTimeUtc ( string path, System.DateTime lastWriteTimeUtc ) : void | ||
path | string | The path. |
lastWriteTimeUtc | System.DateTime | The last write time UTC. |
return | void |