copyDir

Copies all files from the given source directory, to the given destination directory. Will create the destination directory if it doesn't exist yet. Overwrites any files that already exist in the destination directory.

void
copyDir
(
string sourceDir
,
string destDir
)

Parameters

sourceDir string

The source directory to copy from.

destDir string

The destination directory to copy to.

Meta