FileOperationQueueCopy(DirectoryInfo, String, String) Method
Queues a copy 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 QueueCopy(
DirectoryInfo srcDir,
string dstDirPath,
string newDirName = ""
)
Public Sub QueueCopy (
srcDir As DirectoryInfo,
dstDirPath As String,
Optional newDirName As String = ""
)
Dim instance As FileOperation
Dim srcDir As DirectoryInfo
Dim dstDirPath As String
Dim newDirName As String
instance.QueueCopy(srcDir, dstDirPath,
newDirName)
public:
void QueueCopy(
DirectoryInfo^ srcDir,
String^ dstDirPath,
String^ newDirName = L""
)
member QueueCopy :
srcDir : DirectoryInfo *
dstDirPath : string *
?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 copy from.
- dstDirPath String
-
Destination directory path to copy to.
- newDirName String (Optional)
-
Gives a new name for the copied directory.
If null, the new directory name is the same as the source directory name.