If you're anything like me, you sometimes want to get rid of the .s# and
.b# files because you have completed something and don't need them
anymore or have an extensive backup system, or whatever. Here's a simple
batch file script I created with the help of a forgotten site that will
remove all of them from all directories. It's recursive, so I place the
batch file in my projects directory and run it on occasion.
Copy and paste this into a file named remove_s#_b#.bat:
FOR /F "tokens=*" %%G IN ('DIR /B /A-D /S .s#') DO del "%%G"
FOR /F "tokens=*" %%G IN ('DIR /B /A-D /S .b#') DO del "%%G"
Travis