File_CopyFile
Description
Copies a file from source to a destination
Syntax
File_CopyFile(sSourceFile, sTargetFile, bOverWrite) As Boolean
Parameters
sSourceFile (String)
File to copy
sTargetFile (String)
Name of targetfile
bOverWrite (Boolean)
Overwrite existing file
Example
VBScript
If bStatus Then bStatus = File_CopyFile(gsPackageRoot & "\capalib.chm", gsProgramFiles & "\CapaInstaller\capalib.chm", True)