[This is preliminary documentation and is subject to change.]

Result of file system operation

Namespace: Tools.TotalCommanderT
Assembly: 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 nameValueDescription
ExistsResumeAllowed7The local file already exists, and resume is supported (used when Gettin/Putting file not for pure-remote copy/move)
NotSupported6The operation is not supported (e.g. resume)
UserAbort5Copying was aborted by the user (through ProgressProc(String, String, Int32))
WriteError4There was an error writing to the target file, e.g. disk full
ReadError3There was an error reading from the source file
FileNotFound2The source file couldn't be found or opened.
FileExists1The target file already exists
OK0The file was copied/moved OK
IsFlagsGets value indicating if given value is of enum type which has FlagsAttribute applied
GetNameGets name of given enumeration value
GetConstantGets constant field that represents given enum value
GetValueGets value of enum in its unedlying type
IsDefinedGets value idicating if given value is defined as constant in enumeration

See Also