2013-01-03 5 views

답변

0
Normally I would open a command window then cd to the directory you want to delete, 
    Enter the command: "del /S /F *.* *" to delete all files and subdirectories. 
    Backup to the parent directory: cd .. 
    Remove the directory: rmdir "user*" 

    Use "del/?" to see all the options for del. 

    If you have to do this in c++, you can use the "system()" call. 

    BTW: I did not test this just now, so no guarantee. 
관련 문제