|
本帖最后由 plutoshen 于 2024-9-4 16:51 编辑
应用举例:按照一个文件列表来复制文件到指定的文件夹而且保持目录结构不变
filelist.txt: 需要复制的文件列表
dest:目标文件夹(如果不存在则新建)
cp.cmd: 示例命令行
这个例子中,复制d:\Windows下5个文件到dest文件夹。
把这5个文件
d:\windows\notepad.exe
d:\windows\Fonts\ahronbd.ttf
d:\windows\Fonts\andlso.ttf
d:\windows\Fonts\angsa.ttf
d:\windows\System32\drivers\etc\hosts
复制到
x:\rsync4win\dest\windows\notepad.exe
x:\rsync4win\dest\windows\Fonts\ahronbd.ttf
x:\rsync4win\dest\windows\Fonts\andlso.ttf
x:\rsync4win\dest\windows\Fonts\angsa.ttf
x:\rsync4win\dest\windows\System32\drivers\etc\hosts
/cygdrive/d/表示widows下的D盘,路径必须使用正斜杠分割。
所有操作一行命令完成,不需要复杂的批处理。
在此下载
|
|