Do you have to Delete the contents of a directory before calling RMDir, or can you just delete everything using the RMDir function?
Thanks-
MT
RMDir function question
3 posts
Using the parameter "/r" you can delete the hole directory.
RMDir /r $INSTDIR
;This will remove the $INSTDIR directory and its files.
Great. Thanks.