Function Reference

DirCopy

Copies a directory and all sub-directories and files (Similar to xcopy).

DirCopy ( "source dir", "dest dir" [, flag] )

 

Parameters

source dir Path of the source directory (with no trailing backslash). eg. "C:\Path1"
dest dir Path of the destination dir (with no trailing backslash). eg. "C:\Path_Copy"
flag [optional] this flag determines whether to overwrite file if they already exist:
 0 = (default) do not overwrite existing files
 1 = overwrite existing files

 

Return Value

Success: Returns 1.
Failure: Returns 0 if there is an error copying the directory.

 

Remarks

If the destination directory structure doesn't exist, it will be created (if possible).

 

Related

DirRemove, FileCopy

 

Example


DirCopy("C:\My Documents", "C:\Backups\MyDocs", 1)