欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

全盤搜索指定文件并拷貝到指定位置[自動(dòng)重命名]的批處理

 更新時(shí)間:2009年12月23日 23:26:08   作者:  
全盤搜索指定文件并拷貝到指定位置[自動(dòng)重命名]的批處理
復(fù)制代碼 代碼如下:

@echo off&setlocal enabledelayedexpansion
set num=0
set /p filename=請(qǐng)輸入要查找的文件名[包含文件擴(kuò)展名]:
set /p newpath=請(qǐng)輸入所要拷貝到的指定目錄:
if not exist !newpath! md !newpath! 1>nul 2>nul
set zh=!newpath:~-1!
if !zh! NEQ "\" set newpath=!newpath!\
for %%a in (c d e f g h i j k l) do (
cd /d %%a:\
for /r . %%i in (*.exe) do (
if "%%~ni%%~xi"=="!filename!" set /a num=!num!+1 && copy "%%i" !newpath!%%~ni!num!%%~xi 1>nul 2>nul && echo %%i → %%~ni!num!%%~xi>>!newpath!filecopy.txt
)
)
start !newpath!filecopy.txt

相關(guān)文章

最新評(píng)論