Ahmad
Senior Member
@hmad
Posts: 526 Reputation: 27
40 / / –
Joined: Dec 2004
|
RE: Delete File in VB6
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
|
|