FileOperationQueueMove(DirectoryInfo, DirectoryInfo, String) Method
Queues a move operation of a source directory to a destination directory.
Namespace: DevCase.Core.IO.FileSystemAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public void QueueMove(
DirectoryInfo srcDir,
DirectoryInfo dstDir,
string newDirName = ""
)
Public Sub QueueMove (
srcDir As DirectoryInfo,
dstDir As DirectoryInfo,
Optional newDirName As String = ""
)
Dim instance As FileOperation
Dim srcDir As DirectoryInfo
Dim dstDir As DirectoryInfo
Dim newDirName As String
instance.QueueMove(srcDir, dstDir, newDirName)
public:
void QueueMove(
DirectoryInfo^ srcDir,
DirectoryInfo^ dstDir,
String^ newDirName = L""
)
member QueueMove :
srcDir : DirectoryInfo *
dstDir : DirectoryInfo *
?newDirName : string
(* Defaults:
let _newDirName = defaultArg newDirName ""
*)
-> unit
No code example is currently available or this language may not be supported.
Parameters
- srcDir DirectoryInfo
-
Source directory to move from.
- dstDir DirectoryInfo
-
Destination directory to move to.
- newDirName String (Optional)
-
Gives a new name for the moved directory.
If null, the new directory name is the same as the source directory name.