I know I am overlooking this so I will just ask,
1) How/Can I specify the name for the temp folder that nsis creates?
2) How/Can I prevent nsis from deleting this temp folder when its done?
2 quick questions
3 posts
Have a look at this recent topic:
There's no standard insructions for what you want.
To stop it deleting the temp folder at the end you could open a txt file in the folder and not close it:
FileOpen $R0 "$PLUGINSDIR\file.tmp" w
Why though do you need these things?
-Stu
Are you a developer who uses NSIS to distribute your application? Are you a Winamp plug-in developer who wants to use NSIS to distribute your plug-in? Have suggestions for other people like you? This is the place.
There's no standard insructions for what you want.
To stop it deleting the temp folder at the end you could open a txt file in the folder and not close it:
FileOpen $R0 "$PLUGINSDIR\file.tmp" w
Why though do you need these things?
-Stu
Thanks for the help, I just decided that I would use a installation directory instead but really appreciate the help.