Click or drag to resize

CopyMoveResult Constructor

Initializes a CopyMoveResult instance for the Copy or Move action.
Remarks
Normally there is no need to manually call this constructor.

Namespace:  Alphaleonis.Win32.Filesystem
Assembly:  AlphaFS (in AlphaFS.dll) Version: 2.2
Syntax
public CopyMoveResult(
	string source,
	string destination,
	bool isCopy,
	bool isDirectory,
	bool preserveDates,
	bool emulatedMove
)

Parameters

source
Type: SystemString
Indicates the full path to the source file or directory.
destination
Type: SystemString
Indicates the full path to the destination file or directory.
isCopy
Type: SystemBoolean
>When the action is a Copy, Move otherwise.
isDirectory
Type: SystemBoolean
When indicates the sources is a directory; file otherwise.
preserveDates
Type: SystemBoolean
if original Timestamps must be preserved, otherwise. This parameter is ignored for move operations.
emulatedMove
Type: SystemBoolean
When indicates the Move action used a fallback of Copy + Delete actions.
See Also