1

我在 D:\User Profiles\ 中,我需要删除位于

D:\User Profiles\---USERNAME---\UPM_Profile\AppData\Local\Mozilla\Firefox\Profiles\*.default

现在问题来了。我怎样才能做到这一点?如果我输入

dir /ad /b /s D:\User Profiles\*\UPM_Profile\AppData\Local\Mozilla\Firefox\Profiles\*.default

它失败。---USERNAME--- 和 *.default 需要是动态的。有什么想法`?

4

1 回答 1

2

就像是:

@echo off
for /d %%i in ("D:\User Profiles\*") do (
   call :remove_dirs %%i
)
goto :eof

:remove_dirs
  echo %1
  for /d %%j in ("%1\UPM_Profile\AppData\Local\Mozilla\Firefox\Profiles") do rmdir %%j
  goto :eof
于 2013-11-05T13:38:51.280 回答