4

I have tried to follow the advice here: Need to delete all the files with one extension on a drive in Windows 7

But if I want to delete all files in a specific folder, with a specific extension, that doesn't work.

I have a folder with *.ASP and *.ASPX files, and I need to delete all the *.ASP files but keep the ASPX pages.

I also need to delete a folder if it is empty, after deleting the file(s).

How would I delete all the ASP pages easily, including empty folders? Command prompt is no problem.

EDIT: This is the trick in PowerShell:

Get-ChildItem -path . -recurse -include *.asp | 
  Where-Object {-not $_.PSIsContainer} |
  Remove-Item -Verbose
Lars Holdgaard
  • 195
  • 2
  • 8

2 Answers2

5

To remove all files with a specific extension can be done with something like:

cd C:\ path\to\directory\extension
del /s *.extension

For removing empty folders I would suggest looking at a question from stackoverflow:

https://stackoverflow.com/questions/7831286/how-to-delete-empty-folders-using-windows-command-prompt

EDIT: Obviously I suggest caution running this sort of command on an entire drive. There might be something you need. So do be careful.

Matthew Williams
  • 4,314
  • 12
  • 26
  • 38
0

Here's the way to do it with JP Software's TCC/LE:

del /s /x *.asp

The /s option causes recursion into subdirectories, and the /x option causes emptied directories to be removed.

TCC will not match short filenames with the *.asp wildcard. That sort of wildcard matching is a non-default feature that has to be turned on. The wildcard will just match long filenames, so the problem caused by *.aspx files happening to have *.asp short filenames will not occur.

Further reading

  • JP Software. DEL. Take Command / TCC Help.
  • JP Software. LFN Searches. Take Command / TCC Help.
JdeBP
  • 26,613
  • 1
  • 72
  • 103