На це запитання відповідає Каділак. Я написав це як пакетний скрипт, який бере параметри опцій і має трохи конфігурації, що може допомогти ОП та іншим, хто хоче робити трохи інші речі. Виписки ехо є необов’язковими і можуть бути видалені, якщо ви не хочете жодного результату в операції. Повідомте мене, чи є помилки.
Зразок того, як це може працювати
У цьому прикладі параметр підстановки встановлено на істинне, для отримання додаткової інформації див код нижче
dir D:\deltest
Wed 04/03/2013 07:05 PM <DIR> KEEPME
Wed 04/03/2013 07:05 PM <DIR> SAMPLE
Wed 04/03/2013 07:05 PM <DIR> SAMPLE2
delete-sample-dir.bat d:\deltest
Searching for *SAMPLE* in D:\deltest
Deleting the folder D:\deltest\SAMPLE
Deleting the folder D:\deltest\SAMPLE2
dir D:\deltest
Wed 04/03/2013 07:05 PM <DIR> KEEPME
Код для delete-sample-dir.bat
@echo off
REM set the name of the directory you would like to target for deleting
set dirname=SAMPLE
REM set the following to "true" if you want to select any directory that includes the name, e.g., a wildcard match
set usewildcard=true
REM --DO NOT EDIT BELOW THIS LINE---------------
REM sentinel value for loop
set found=false
REM If true surround in wildcards
if %usewildcard% == true (
set dirname=*%dirname%*
)
REM use current working directory or take the directory path provided as the first command line parameter
REM NOTE: do not add a trailing backslash, that is added in the for loop, so use "C:" not "C:\"
set directorytosearch=%cd%
if NOT "%1%" == "" (
set directorytosearch=%1%
)
echo Searching for %dirname% in %directorytosearch%
REM /r for files
REM /d for directories
REM /r /d for files and directories
for /d %%i in (%directorytosearch%\%dirname%) do (
IF EXIST %%i (
REM change the sentinel value
set found=true
echo Deleting the folder %%i
REM Delete a folder, even if not empty, and don't prompt for confirmation
rmdir /s /q %%i
)
)
REM logic to do if no files were found
if NOT "%found%" == "true" (
echo No directories were found with the name of %dirname%
)