◎筱米加步枪◎.Blog

Happy coding

Dos批处理命令-拷贝文件夹下的多个文件

筱米加步枪 posted @ 2010年11月25日 04:44 in [ 系统/软件 ] with tags dos 拷贝文件 , 10177 阅读

接到勇发的问题:

用批处理命令实现从一个文件夹下的文件1.txt,2.txt,3.txt....拷贝到另外一个文件夹中..

立刻网上搜索学习了下,写了如下批处理:

for /l %%i in (1,1,3) do copy d:\test\%%i.txt d:\test\sub\%%i.txt
pause

上面是一个循环拷贝文件,其中/l 表示以增量的形式从开始到结束的一个序列,其实变量%%i就是表示这个数字,in(1,1,3)表示开始值是1,增量是1,结束值是3,就是表示变量i从1到3,加上后面的copy语句,就是拷贝文件夹d:\test\1.txt~3.txt拷贝到d:\test\sub目录下。

其实,如果d:\test目录下如果只有我们要拷贝的文件,可使用更简单的方法:

@echo on
copy d:\test\*.txt d:\test\sub\*.txt
pause

上面的意思就是将d:\test\目录下的所有txt文件拷贝到d:\test\sub目录下,同样也达到了效果。

  • 无匹配
civaget 说:
2023年12月13日 08:43

I'm impressed with 백링크업체's content marketing. Their content attracts backlinks and boosts authority.

civaget 说:
2023年12月17日 02:50

Educate users about responsible gaming practices to promote a safe and enjoyable experience on your 토토사이트.

civaget 说:
2023年12月20日 02:20

Connect with sports fans worldwide through 해외스포츠중계's vibrant community.

civaget 说:
2023年12月21日 05:58

오피뷰 is a rising star among office platforms, offering a comprehensive solution.

civaget 说:
2024年1月02日 00:03

오피가이드 is the ultimate resource for a rejuvenating massage experience.

civaget 说:
2024年1月02日 21:33

Thanks to 오피매거진, I've found hidden gems for relaxation within officetels.

civaget 说:
2024年1月04日 03:56

With 오피스타, discovering massage parlors nearby has never been easier. Try it out!

civaget 说:
2024年1月13日 00:01

The future of entertainment is here, and it's called 누누티비 다시보기.


登录 *


loading captcha image...
(输入验证码)
or Ctrl+Enter