I'm trying to write a Windows Batch Script file that deletes just .asp files.
If I do:
del *.asp /s
This has the side-effect of deleting any files with the extension .aspx. This is bad because I want to preserve files with the aspx extension.
Is there any solution to this problem that doesn't require installing a custom application?