ttrrf 当前离线
一级士官
评分人数
foxJL 当前离线
荣誉版主
@echo off for /f "delims=" %%i in ('dir /b .\drawable-hdpi\*.png') do ( if exist .\drawable-xhdpi\%%i del,%%~dpi\drawable-hdpi\%%i ) pause复制代码
TOP
terse 当前离线
中将
@echo off set "ph1=d:\drawable-hdpi" set "ph2=d:\drawable-xhdpi" cd /d "%ph1%" for /f "delims=" %%i in ('dir /b/a-d') do if exist "%ph2%\%%i" del "%%i"复制代码