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、結果をにパイプDIRFINDます。

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からの答えは私のために働いた。ディレクトリツリーを解析して、xyzファイル拡張子を持ち、パスのどこにもbadvalueを含まないすべてのファイルを見つけるためにbatファイルが必要でした。解決策は次のとおりです。

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 に答える