Click or drag to resize

FileCopyRecursively Method

Copies ALL files recursively.

Namespace:  Koden.Utils.IO
Assembly:  Koden.Utils.IO (in Koden.Utils.IO.dll) Version: 1.0.6453.26060
Syntax
public static FWRetVal<string> CopyRecursively(
	string sourceDir,
	string targetDir,
	FileFilterType filterType = FileFilterType.None,
	string filter = null,
	bool overwrite = false,
	string renameMask = "{0}.{1}"
)

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
if set to true [overwrite].
renameMask (Optional)
Type: SystemString
The rename mask in the form of "{0}.{1}".

Return Value

Type: FWRetValString

[Missing <returns> documentation for "M:Koden.Utils.IO.File.CopyRecursively(System.String,System.String,Koden.Utils.IO.FileFilterType,System.String,System.Boolean,System.String)"]

See Also