quote:
Originally posted by Ahmad
quote:
Originally posted by Millenium_edition
No, you have to delete every file in every subdirectory, then remove the subdirectories and then remove the dir
code:
RmDir "c:\bla\"
' c:\bla is empty
Use..
code:
ChDir "c:\bla\"
Kill "c:\bla\*.*"
ChDir "c:\"
RmDir "c:\bla\"
or something like that
that won't work if the directory has subdirectories.
you have to use dir() to enumerate all the folders & files and then delete every single one of them