Skip to content
⌘ NSIS Forum Archive

Directory not being removed

2 posts

rikkov#

Directory not being removed

Hi guys,

When I uninstall my software some of the directories still remain....they are not deleted in spite of the fact that I have given lines to remove them in my script...What could I be possibly doing wrong...Is there way in which I can delete all the directory(including sub directories) in a single go when all files are deleted?

Thanks a lot
Rikkov
Animaether#
there's "RMDir /r", that will remove the folder including subfolders and such.

You should find out why the folder isn't being removed, though.. does a file remain that you should have deleted first? Did you use SetOutpath at any point to make it the 'active' folder and you have to use 'SetOutpath $TEMP' to clear it? etc.