那么从为什么 dir *.txt 也返回 *.txtf 呢?告诉我我的原因
del /S moc_*.cxx call is also deleting moc_foo.cxx_parameters
如果我不知道 foo 的长度,windows 中有没有办法只删除 .cxx 文件?
编辑我发现一个“等效”调用是
forfiles /S /m *.cxx /c "cmd /c del @file"
如果找不到文件,请安静地执行此操作
forfiles /S /m *.cxx /c "cmd /c del @file" 2> nul
多么糟糕的设计!