我想删除当前目录中名称中不包含字符串“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?
谢谢。