批处理文件查找文件,并复制粘贴到另一个位置(Batch file to find file, and

2019-10-29 08:03发布

需要用批处理文件的帮助。 我需要的:找到确切的称为文件(例如,从C:驱动器),然后复制粘贴到同一磁盘上的其他位置。

例如:我需要找到文件在C称为“TextFile.txt的”:驱动器,如果它发现它,它会复制,并粘贴到位置C:\ Program Files文件\ Internet Explorer中

因此,任何简单的方法来做到这一点?

Answer 1:

给这一个镜头:

for /f "delims=" %%i in ('dir /s /b /a-d c:\textfile.txt') do copy /b "%%~i" "C:\Program Files\Internet Explorer"


文章来源: Batch file to find file, and copy paste it to another location