Click or drag to resize

CopyMoveResult Constructor

Create a CopyMoveResult class instance for the Copy or Move action.

Namespace:  Alphaleonis.Win32.Filesystem
Assembly:  AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax
public CopyMoveResult(
	string source,
	string destination,
	bool isDirectory,
	bool isMove,
	bool isCanceled,
	int errorCode
)

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