|

the software that grows
with you
| |
|
V32CopyFile()
|
| Calls Windows API internal function to
copy a source file to destination file. |
|
Syntax
|
| V32CopyFile( <cFileSource>,
<cFileDest> ) |
|
Arguments
|
| cFileSource |
Charcter string representing a fully qualified file
name with drive, directory and extension information which has to be
copied. |
| cFileDest |
Charcter string representing a fully qualified file
name with drive, directory and extension information which will be
the the copied file. |
|
|
Returns
|
| NIL |
|
Description
|
| A WinApi function to copy a single file
to another location. Note that Windows will report an error if
<cFileSource> and <cFileDest> are the same. |
|
Usage
|
local cFileSource := 'c:\config.sys'
local cFileDest := 'd:\backup\config.sys'
V32CopyFile( cFileSource, cFileDest )
|
|
Tips
|
|
|