自己的学习笔记
- ::先全盘搜索一文件(如:A.xxx 设A.xxx路径为xxxxxx)
- :: 记录路径xxxxxx
- :: 在批处理同一目录下还有文件(如:B.xxx)
- :: 复制B.xxx到A.xxx的目录下(就是把B.xxx复制到路径xxxxxx)
- @echo off
- set alldrive=c d e f g h i j k l m n o p q r s t u v w x y z
- for %%i in (%alldrive%) do if exist %%i:\ dir /s /b %%i:| find "aaaaaa.txt" >>results.txt
- for /f "delims=" %%j in (results.txt) do copy bbbbbb.txt "%%~dpj"
- ::要把results.txt文件中上路径提取出来的话必须要用delims,否则弄到的只是results.txt路径
本文转自sucre03 51CTO博客,原文链接:http://blog.51cto.com/sucre/413003,如需转载请自行联系原作者