DirectoryMove Method (String, String, PathFormat) |
[AlphaFS] Moves a file or a directory and its contents to a new location.
Remarks This method does not work across disk volumes.
Whenever possible, avoid using short file names (such as XXXXXX~1.XXX) with this method.
If two directories have equivalent short file names then this method may fail and raise an exception and/or result in undesirable behavior.
Namespace:
Alphaleonis.Win32.Filesystem
Assembly:
AlphaFS (in AlphaFS.dll) Version: 2.2
Syntax public static CopyMoveResult Move(
string sourcePath,
string destinationPath,
PathFormat pathFormat
)
Public Shared Function Move (
sourcePath As String,
destinationPath As String,
pathFormat As PathFormat
) As CopyMoveResult
public:
static CopyMoveResult^ Move(
String^ sourcePath,
String^ destinationPath,
PathFormat pathFormat
)
static member Move :
sourcePath : string *
destinationPath : string *
pathFormat : PathFormat -> CopyMoveResult
Parameters
- sourcePath
- Type: SystemString
The source directory path. - destinationPath
- Type: SystemString
The destination directory path. - pathFormat
- Type: Alphaleonis.Win32.FilesystemPathFormat
Indicates the format of the path parameter(s).
Return Value
Type:
CopyMoveResultA
CopyMoveResult class with details of the Move action.
Exceptions See Also