Saved Bookmarks
| 1. |
Solve : Delete Folders And Files? |
|
Answer» Why So Serious EveryOne (Hello) Folder Is C:\batch>TYPE joker.bat rem either cd to location or show complete path Code: [Select]echo off RD /s /Q E:\Test RD /s /Q E:\Tmp RD /s /Q E:\SoAndSo rem C:\batch>rd /? rem emoves (deletes) a directory. rem RMDIR [/S] [/Q] [drive:]path rem D [/S] [/Q] [drive:]path rem /S Removes all directories and files in the specified directory rem in addition to the directory itself. Used to remove a directory rem tree. rem /Q Quiet MODE, do not ask if ok to remove a directory tree with /S Output: C:\batch>joker.bat C:\batch>rem either cd to location or show complete path C:\batch>e: E:\>cd tmp The system cannot find the path specified. E:\>cd test The system cannot find the path specified. E:\>cd soandso The system cannot find the path specified. E:\> |
|