FileOperationQueueCopy(String, String, String) Method
Queues a copy operation of a source file or 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(
string srcItem,
string dstDirPath,
string newItemName = ""
)
Public Sub QueueCopy (
srcItem As String,
dstDirPath As String,
Optional newItemName As String = ""
)
Dim instance As FileOperation
Dim srcItem As String
Dim dstDirPath As String
Dim newItemName As String
instance.QueueCopy(srcItem, dstDirPath,
newItemName)
public:
void QueueCopy(
String^ srcItem,
String^ dstDirPath,
String^ newItemName = L""
)
member QueueCopy :
srcItem : string *
dstDirPath : string *
?newItemName : string
(* Defaults:
let _newItemName = defaultArg newItemName ""
*)
-> unit
No code example is currently available or this language may not be supported.
Parameters
- srcItem String
-
Full path to the source file or directory to copy from.
- dstDirPath String
-
Destination directory path to copy to.
- newItemName String (Optional)
-
Gives a new name for the copied item.
If null, the new item name is the same as the source item name.