 | FileMoveRecursively Method |
Moves files recursively.
Namespace:
Koden.Utils.IO
Assembly:
Koden.Utils.IO (in Koden.Utils.IO.dll) Version: 1.0.6453.26060
Syntaxpublic static FWRetVal<int> MoveRecursively(
string sourceDir,
string targetDir,
FileFilterType filterType = FileFilterType.None,
string filter = null,
bool overwrite = false
)
Public Shared Function MoveRecursively (
sourceDir As String,
targetDir As String,
Optional filterType As FileFilterType = FileFilterType.None,
Optional filter As String = Nothing,
Optional overwrite As Boolean = false
) As FWRetVal(Of Integer)
public:
static FWRetVal<int>^ MoveRecursively(
String^ sourceDir,
String^ targetDir,
FileFilterType filterType = FileFilterType::None,
String^ filter = nullptr,
bool overwrite = false
)
static member MoveRecursively :
sourceDir : string *
targetDir : string *
?filterType : FileFilterType *
?filter : string *
?overwrite : bool
(* Defaults:
let _filterType = defaultArg filterType FileFilterType.None
let _filter = defaultArg filter null
let _overwrite = defaultArg overwrite false
*)
-> FWRetVal<int>
Parameters
- sourceDir
- Type: SystemString
The source directory. - targetDir
- Type: SystemString
The target directory. - filterType (Optional)
- Type: Koden.Utils.IOFileFilterType
Type of the filter. - filter (Optional)
- Type: SystemString
The filter. - overwrite (Optional)
- Type: SystemBoolean
overwrite? true or false
Return Value
Type:
FWRetValInt32[Missing <returns> documentation for "M:Koden.Utils.IO.File.MoveRecursively(System.String,System.String,Koden.Utils.IO.FileFilterType,System.String,System.Boolean)"]
See Also