我需要移动然后从磁盘中删除文件所在的目录。结构看起来像这样:
./Export
/Report_1
/12345
/something.pdf
/Report_2
...
我的代码如下所示:
@echo off
SETLOCAL ENABLEDELAYEDEXPANSION
cd Export
for /D %%I in (%~dp0Export\*) do (
set "input=%%~nI"
for /f "tokens=2 delims=_" %%a in ("!input!") do (
md %~dp0new_reports\new_report_%%a
cd Report_%%a
for /R %%f in (*.pdf) do (
for %%S in (%%f) do (
if %%~zS NEQ "0" (
move %%f %~dp0new_reports\new_report_%%a
cd ..
set "id=%%a"
echo !id!
rmdir /S /Q "%~dp0Export\Report_!id!\"
)
)
)
)
)
@echo Finished ....
但 rmdir 仅删除带有ID( / 12345 )的子文件夹,但Report_1文件夹仍然存在,但为空。我尝试了echo "%~dp0Export \ Report_!id!\" ,看起来还不错。
所以在脚本结构的末尾看起来像这样:
./Export
/Report_1
/Report_2
...
和我还需要删除文件夹Report_1,依此类推。
如果我将命令复制到控制台,它可以工作,但是在批处理脚本中,它不能正常工作。
答案 0 :(得分:0)
这样的事情适合你的目的吗?
@Echo Off
SetLocal EnableDelayedExpansion
PushD "%~dp0Export" 2>Nul||Exit/B
For /D %%I in (*) Do (Set "input=%%~nxI"
MD "new_reports\new_report_!input:*_=!"
For /F "Delims=" %%f In ('Dir/B/S/A-D "%%~nxI\*.pdf"') Do If %%~zf Neq 0 (
Move "%%f" "new_reports\new_report_!input:*_=!" && RD/S/Q "%%~nxI"))
Echo(Finished ....
Timeout -1
我现在已经在Export目录中创建了新目录,只是为了将所有内容保存在一起。将这两个位置的"new_reports\new_report_!input:*_=!"
更改为"%~dp0new_reports\new_report_!input:*_=!"
,以更改为您的首选结构。