CopyMoveResult Constructor |
Create a CopyMoveResult class instance for the Copy or Move action.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public CopyMoveResult(
string source,
string destination,
bool isDirectory,
bool isMove,
bool isCanceled,
int errorCode
)
Public Sub New (
source As String,
destination As String,
isDirectory As Boolean,
isMove As Boolean,
isCanceled As Boolean,
errorCode As Integer
)
public:
CopyMoveResult(
String^ source,
String^ destination,
bool isDirectory,
bool isMove,
bool isCanceled,
int errorCode
)
new :
source : string *
destination : string *
isDirectory : bool *
isMove : bool *
isCanceled : bool *
errorCode : int -> CopyMoveResult
Parameters
- source
- Type: SystemString
Indicates the source file or directory. - destination
- Type: SystemString
Indicates the destination file or directory. - isDirectory
- Type: SystemBoolean
Indicates that the file system object is a directory. - isMove
- Type: SystemBoolean
Indicates if the action is a Copy or Move action. - isCanceled
- Type: SystemBoolean
Indicates if the action was canceled. - errorCode
- Type: SystemInt32
The error code encountered during the Copy or Move action.
See Also