名前に文字列「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?
ありがとう。