将一个文件的内容复制或附加到另一个文件 (vl-file-copy source-file destination-file [append])将一个文件的内容复制或附加到另一个文件。vl-file-copy 函数不会覆盖现有文件,而是将内容附加其后。
$ (vl-file-copy "c:/test.bat" "c:/newauto.bat")nil
复制失败,因为 newauto.bat 已经存在,而又没有指定 append 参数。
复制失败,因为 destination-file 已经存在,不会覆盖destination-file原文件,我日....我就要覆盖destination-file原文件啊...........
|