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 …
Tag Archives: Dos
MS-DOS (cmd.exe) prompt introduction
This article is from our Febooti archive, it was relevant then, and I think that it is still relevant today. If you remember the computers of an earlier day then you surely remember the old MS-DOS. If you are of the more recent generation of computer users then you have also probably seen, used or …
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 …
Continue reading “How to delete all folders in current directory”