|
copyFile()Function that copies a file to the target file path, replacing it if it already exists. copyFile(source, target)Copies a file to the target file path, replacing it if it already exists. source String that specifies source file path and name. target String that specifies target file path and name. target String that specifies destination path and file name. ExampleIn this script, the file test.txt included in c:\Content, will be copied into the c:\out folder.
|
|