How can I create a file in the directory in which my application is installed?

I've tried the following, and it doesn't work. Basically I need to be able to create the file in C:\Program Files\MyAppName\ on Windows XP or C:\Program Files(x86)\MyAppName on Windows Vista and newer.

SaveStringToFile("{pf}\{#MyAppName}\Registration.txt", Serial, False);
link|improve this question

77% accept rate
'It doesn't work' is very helpfull... – Dean K. Aug 12 '11 at 19:53
try this string path = Environment.CurrentDirectory; – Nivid Dholakia Aug 12 '11 at 20:00
feedback

3 Answers

up vote 3 down vote accepted

It's better to use the special constant {app}, in case the user chooses a different directory to install it in.

SaveStringToFile(ExpandConstant('{app}\Registration.txt'), Serial, False);

To save the file in the Application Data directory (shared by all users), use the constant {commonappdata} instead of {app}.

Note that {app} points to "C:\Program Files\My Application\" (or wherever the user chose to install the application and depending on the OS). {commonappdata}, on the other hand, points to the root of the Application Data directory, so it'd be good idea in this case to add a directory for your app, (or company and app):

For example:

SaveStringToFile(ExpandConstant('{commonappdata}\Foobar Corporation\Our Application\Registration.txt'), Serial, False);
link|improve this answer
How can I write the file to Application data folder instead? – Carl Weis Aug 12 '11 at 20:15
See edited answer – scrapdog Aug 12 '11 at 20:25
feedback

Assuming this is a permissions issue you should use Environment.SpecialFolders.ApplicationData instead. It has an added benefit of allowing you to keep your file if application is uninstalled which can be very useful...

link|improve this answer
I know how to do it in .NET...I need to know how to do it using the INNO Setup. – Carl Weis Aug 12 '11 at 20:49
feedback

try this string path = Environment.CurrentDirectory;

link|improve this answer
That doesn;t apply to Inno script. – Deanna Aug 12 '11 at 21:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.