
- 帖子
- 4
- 积分
- 16
- 技术
- 0
- 捐助
- 0
- 注册时间
- 2017-12-23
|
录音文件夹的检索,并复制出检索的结果。
A文件夹 源文件夹(大量文件存放目录,包含子目录)
B文件夹 存放查找出的文件夹(用于查找到文件复制存放目录)
1.txt 存放要查找的文件的名(不是全名,如txt的文件存放的是:13813813813 ,实际文件保存的名为:013813813813_20171921093617_067.WAV)
我在网上找到一段代码,代是提示找不到文件,请各位大能帮解决一下!谢谢!
代码如下:
@echo off
setlocal enabledelayedexpansion
rem set parameter here
rem 查找的源目录
set sourcePath=F:\录音
rem 复制到文件夹
set targetPath=E:\201705-201711
rem 要查找的文件列表
set fileList=1.txt
set /a copyCount=0
dir /s /b !sourcePath!>filelist.txt
for /f "delims=" %%i in (!fileList!) do (
find "%%i" filelist.txt > findfile.txt
if !errorlevel! equ 0 (
for /f "skip=2 delims=" %%j in (findfile.txt) do (
copy /y %%j !targetPath!\%%i>nul
set /a copyCount+=1
)
)else (
echo can't find file %%i
)
)
rem 查找文件目录
del filelist.txt
rem 找到的文件目录
del findfile.txt
echo ************************************
echo copy file success: !copyCount!
pause |
|