[This is preliminary documentation and is subject to change.]
Result of file system operation
Namespace: Tools.TotalCommanderTAssembly: Tools.TotalCommander (in Tools.TotalCommander.dll) Version: 1.5.3.38916 (1.5.3.38916)
Syntax
| C# |
|---|
public enum FileSystemExitCode |
| Visual Basic |
|---|
Public Enumeration FileSystemExitCode |
| Visual C++ |
|---|
public enum class FileSystemExitCode |
| F# |
|---|
type FileSystemExitCode |
| JScript |
|---|
public enum FileSystemExitCode |
Members
| Member name | Value | Description | |
|---|---|---|---|
| ExistsResumeAllowed | 7 | The local file already exists, and resume is supported (used when Gettin/Putting file not for pure-remote copy/move) | |
| NotSupported | 6 | The operation is not supported (e.g. resume) | |
| UserAbort | 5 | Copying was aborted by the user (through ProgressProc(String, String, Int32)) | |
| WriteError | 4 | There was an error writing to the target file, e.g. disk full | |
| ReadError | 3 | There was an error reading from the source file | |
| FileNotFound | 2 | The source file couldn't be found or opened. | |
| FileExists | 1 | The target file already exists | |
| OK | 0 | The file was copied/moved OK | |
| IsFlags | Gets value indicating if given value is of enum type which has FlagsAttribute applied | ||
| GetName | Gets name of given enumeration value | ||
| GetConstant | Gets constant field that represents given enum value | ||
| GetValue | Gets value of enum in its unedlying type | ||
| IsDefined | Gets value idicating if given value is defined as constant in enumeration |