6

我想删除当前目录中名称中不包含字符串“sample”的所有文件。

例如,

test_final_1.exe
test_initial_1.exe
test_sample_1.exe
test_sample_2.exe

我想删除除名称中包含样本的文件以外的所有文件。

for %i in (*.*) do if not %i == "*sample*" del /f /q %i

Is the use of wild card character in the if condition allowed?
Does, (*.*) represent the current directory?

谢谢。

4

3 回答 3

6

最容易使用 FIND 或 FINDSTR/V选项来查找不包含字符串的名称,以及不/I区分大小写搜索的选项。切换到FOR /F并将结果DIR传递给FIND

for /f "eol=: delims=" %F in ('dir /b /a-d * ^| find /v /i "sample"') do del "%F"

如果在批处理文件中使用,请将 %F 更改为 %%F。

于 2012-05-28T17:09:29.600 回答
3

Aacini 的回答对我有用。我需要一个 bat 文件来解析目录树,以查找所有具有 xyz 文件扩展名且不包含路径中任何位置的 badvalue 的文件。解决方案是:

setlocal enableDelayedExpansion

for /r %%f in (*.xyz) do (
   set "str1=%%f"
   if "!str1!" == "!str1:badvalue=!" (
        echo Found file with xyz extension and without badvalue in path
   )
)
于 2013-11-30T16:15:01.693 回答
2
setlocal EnableDelayedExpansion
for %i in (*.*) do (set "name=%i" & if "!name!" == "!name:sample=!" del /f /q %i)
于 2012-05-29T05:08:50.217 回答