Is there any command to recursively remove .listing files from a Windows folder?
+3
A:
From the command line, run this:
del /s *.listing
You can get more info on the "del" command by running:
del /?
A quick Google search for "windows recursive delete" came up with this solution as the top hit. See: tech-recipes.com
Cosmic Flame
2009-11-10 12:02:24
thanks! it works!
Mithun P
2009-11-10 13:02:10
Glad to hear it! :)
Cosmic Flame
2009-11-10 14:23:34