Thank you, PureBasic!
Posted: Tue Oct 07, 2008 12:03 am
There was a folder I couldn't delete in Windows Vista through Explorer or REM at the command prompt. DeleteDirectory() worked perfectly! 
http://www.purebasic.com
https://www.purebasic.fr/english/
Maybe just explorer blocking it.Mistrel wrote:There was a folder I couldn't delete in Windows Vista through Explorer or REM at the command prompt. DeleteDirectory() worked perfectly!
Code: Select all
C:\>rem /?
Records comments (remarks) in a batch file or CONFIG.SYS.
REM [comment]
Code: Select all
C:\>rd /?
Removes (deletes) a directory.
RMDIR [/S] [/Q] [drive:]path
RD [/S] [/Q] [drive:]path
/S Removes all directories and files in the specified directory
in addition to the directory itself. Used to remove a directory
tree.
/Q Quiet mode, do not ask if ok to remove a directory tree with /S
C:\>