DECLARE INTEGER MoveFile IN kernel32 STRING lpExistingFileName, STRING lpNewFileName
Parameters:
lpExistingFileName
[in] Pointer to a null-terminated string that names an existing file or directory
lpNewFileName
[in] Pointer to a null-terminated string that specifies the new name of a file or directory
Example:
MoveFile('c:\oldfile','c:\newfile')
|