views:

51

answers:

2

Is there any command to recursively remove .listing files from a Windows folder?

+2  A: 
del /s *.listing
Carsten Kuckuk
+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
thanks! it works!
Mithun P
Glad to hear it! :)
Cosmic Flame