how to write a batch file to delete VisualStudioUserFile (*.vcproj.*
) only but not the VisualStudioProject (*.vcproj
)?
Batch file to delete *.vcproj.* e.g. code.vcproj.user1 but no *.vcproj
111 views Asked by dratengon At
1
how to write a batch file to delete VisualStudioUserFile (*.vcproj.*
) only but not the VisualStudioProject (*.vcproj
)?
This can be run interactively in
cmd
:if you want a batch file, then you need
This won't delete files like
blah.vcproj.vcproj
, though. I don't know how likely those are in your case.