dos_mergefiles

把两个以上的文件合并或联合成单个文件.


语法

(dos_move source [destination])

参数

source

要合并的文件名列表

 

destination

要创建的目标文件. 如果省略则默认为源文件列表中的第一个文件名.

返回

如果成功, 返回目标文件名.

nil 失败时.

示例

Command: (setq z '("one.txt" "two.txt" "three.txt"))

("one.txt" "two.txt" "three.txt")

 

Command: (dos_mergefiles z)

"one.txt"

 

Command: (dos_mergefiles z "four.txt")

"four.txt"