Copies or appends the contents of one file to another file
(vl-file-copy source-file destination-file [append])
vl-file-copy function will not overwrite an existing file; it will only append to it.
Copy or append the contents of one file to another file. TheArguments
vl-file-copy looks in the AutoCAD default drawing directory.
A string naming the file to be copied. If you do not specify a full path name,vl-file-copy writes to the AutoCAD default drawing directory.
A string naming the destination file. If you do not specify a path name,nil, source-file is appended to destination-file (that is, copied to the end of the destination file).
If specified and notReturn Values
nil.
An integer, if the copy was successful; otherwisenil are
Some typical reasons for returningExamples
Copy autoexec.bat to newauto.bat:
_$ (vl-file-copy "c:/autoexec.bat" "c:/newauto.bat")
1417
Copy test.bat to newauto.bat:
_$ (vl-file-copy "c:/test.bat" "c:/newauto.bat")
nil
The copy fails because newauto.bat already exists, and the append argument was not specified.
Repeat the previous command, but specify append:
_$ (vl-file-copy "c:/test.bat" "c:/newauto.bat" T)
185
T was specified for the append argument.
The copy is successful because