@echo off
rem 这里写你的仓库路径
set REPOSITORY_PATH=D:\Java\repo
rem 正在搜索...
for /f "delims=" %%i in (‘dir /b /s "%REPOSITORY_PATH%\*lastUpdated*"‘) do (
del /s /q %%i
)
rem 搜索完毕
pause
时间: 2024-10-28 10:37:40
@echo off
rem 这里写你的仓库路径
set REPOSITORY_PATH=D:\Java\repo
rem 正在搜索...
for /f "delims=" %%i in (‘dir /b /s "%REPOSITORY_PATH%\*lastUpdated*"‘) do (
del /s /q %%i
)
rem 搜索完毕
pause