0
如何編寫批處理文件來刪除VisualStudioUserFile(*.vcproj.*
)而不是VisualStudioProject(*.vcproj
)?要刪除的批文件* .vcproj。*例如code.vcproj.user1但沒有* .vcproj
如何編寫批處理文件來刪除VisualStudioUserFile(*.vcproj.*
)而不是VisualStudioProject(*.vcproj
)?要刪除的批文件* .vcproj。*例如code.vcproj.user1但沒有* .vcproj
這可以以交互方式cmd
運行:如果你想有一個批處理文件
for %x in (*.vcproj.*) do if not "%~xx"==".vcproj" del "%x"
,那麼你需要
for %%x in (*.vcproj.*) do if not "%%~xx"==".vcproj" del "%%x"
這不會刪除文件,如blah.vcproj.vcproj
,雖然。我不知道你的情況有多可能。