把两个以上的文件合并或联合成单个文件.
(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"