xhowl

Delete certain file types in drive

Jul 10th, 2012
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. for /r %a in (*.cpp) do (del "%a" /s)
  2. -go to the directory you want to delete
  3. -this will traverse the directory
  4. -use %%a in batch files
Advertisement
Add Comment
Please, Sign In to add comment