CreateDirectory |
Creates a directory and any subdirectories in the specified path.
|
Delete |
Deletes directories and files within directories.
|
Exists |
Checks if the path exists.
|
GetCreationTime |
Returns the time of creation for the specified directory in local time.
|
GetCreationTimeUtc |
Returns the time of creation for the specified directory in UTC time.
|
GetCurrentDirectory |
Returns the current directory the application is set to.
|
GetDirectories |
Returns a list of all the directories found in the specified directory
that matches the search pattern.
|
GetDirectoryRoot |
Returns the root directory of the specified path.
|
GetFiles |
Returns a list of all the files that match a pattern within the specified directory.
|
GetFileSystemEntries |
Returns both directories and files that match the specified pattern.
|
GetLastAccessTime |
Returns the time the directory was last accessed in local time.
|
GetLastAccessTimeUtc |
Returns the time the directory was last accessed in UTC time.
|
GetLastWriteTime |
Returns the time the directory was last written to in local time.
|
GetLastWriteTimeUtc |
Returns the time the directory was last written to in UTC time.
|
GetLogicalDrives |
Returns a list of the logical drives installed on this machine.
|
GetParent |
Returns the parent of the specified directory.
|
Move |
Moves a directory and all of its contents to another location.
|
SetCreationTime |
Sets the creation time of the specified directory to the local time.
|
SetCreationTimeUtc |
Sets the creation time of the specified directory to UTC time.
|
SetCurrentDirectory |
Changes the current directory to the specified directory.
|
SetLastAccessTime |
Sets the time the directory was last accessed in local time.
|
SetLastAccessTimeUtc |
Sets the time the directory was last accessed in UTC time.
|
SetLastWriteTime |
Sets the time the directory was last written to in local time.
|
SetLastWriteTimeUtc |
Sets the time the directory was last written to in UTC time.
|