Page 1 of 1

Delete program folder on exit

Posted: 28 Dec 2018, 16:12
by newbieforever
On exit (e.g. GuiClose with ExitApp) a script should delete the folder where it is located. How to do this?

Re: Delete program folder on exit

Posted: 28 Dec 2018, 17:18
by oif2003
Saw this on https://stackoverflow.com/questions/160 ... executable
process.start("cmd /c ping localhost -n 3 > nul & del filepath")
exit
replace process.start with whatever command your programming language uses to start programs with arguments

replace filepath with the path to your exe

replace exit with the command for terminating your program
There are other ideas in that thread.