Advertisement
otakuSiD

delete all except

Oct 3rd, 2012
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.24 KB | None | 0 0
  1. REM Delete all files in current dir except bat files.  Does this by a) setting the attributes of *.bat files to
  2. REM readonly and hidden, b) deleting the rest, c) reseting the attributes
  3.  
  4. attrib +r +s *.bat
  5. del *.* /S /Q
  6. attrib -r -s *.bat
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement