比如要把c盘的1.txt 拷贝到D盘所有的文件夹里,命令应该怎样写?
删除d盘所有的1.txt我倒是知道
:
d:
del /s 1.txt
删除d盘所有的1.txt我倒是知道
:
d:
del /s 1.txt
联盟域名:www.cn-dos.net 论坛域名:www.cn-dos.net/forum
DOS,代表着自由开放与发展,我们努力起来,学习FreeDOS和Linux的自由开放与GNU精神,共同创造和发展美好的自由与GNU GPL世界吧!
Originally posted by fastslz at 2008-3-8 17:46:
for /r D: %i in (.) do xcopy /h/r/y "c:\1.txt" "%i"