I want to have a batch file that will delete all the folders and files in my cache folder for my wireless toolkit.
Currently I have the following:
cd
You cannot delete everything with either rmdir or del alone:
rmdir
del
rmdir /s /q
rmdir /s /q *
del /s /f /q
My preferred solution (as I have used in many other batch files) is:
rmdir /s /q . 2>NUL