MS-DOS (cmd.exe) prompt basic commands

This article is from our Febooti archive, it was relevant then, and I think that it is still relevant today (a few details changed). Since most of users do not use command prompt as their primary interaction with the operating system then we will go over the pure basics. These commands can also be used …

How to delete all folders in current directory

How to delete all folders in current directory using command line (cmd.exe) or batch files? How to delete all empty directories in current folder: FOR /D %f IN (*.*) DO RD “%f” How to delete all directories / folders in current directory / folder: FOR /D %f IN (*.*) DO RD “%f” /S /Q If …