vote up 0 vote down star

I created a program in C# .net using VS2008.

When the user installs the program I don't know if it will be on the C: drive or D: drive or someplace else. The issue is that I need the program to automatically create files and then retrieve those files later on without any assistance from the user.

I thought the least complex situation was to place these files in the directory where the program is installed so that the location would remain constant and this strategy would reduce the chances that the files will be accidentally deleted by the user.

Question 1:

How to I refer to the install directory of my app when the user has their choice of the install location?

Question 2:

Should I even be doing it this way or should I be looking at this from a totally different perspective.

flag

5 Answers

vote up 3 vote down check

Assembly.GetExecutingAssembly().Location will give you the path to the currently executing assembly.

However, writing to that location will cause problems for users running on Vista, Server 2008 and later, which are more strict about normal users not writing to places like C:\Program Files. Your best bet is probably something like:

Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData)

There are a bunch of options for Environment.SpecialFolder, based on what exactly you want to store.

link|flag
Using Environment.SpecialFolder is the best approach. – Ben M Aug 12 at 3:20
This worked great for me. Thanks for the help Zack. J – JK Aug 15 at 3:11
vote up 0 vote down

You can use the System.Environment.CurrentDirectory property to determine where your application belongs.

Alternatively, you could look into isolated storage. The data is stored on a user/machine basis (as you choose) so you can store different files for different users.

Which you choose depends on how much information you want to store, and the security surrounding it.

link|flag
System.Environment.CurrentDirectory doesn't give the install directory, it gives the current active/working directory. See msdn.microsoft.com/en-us/library/… – OJ Aug 12 at 3:01
vote up 0 vote down

You can get the current directory using:

string dir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);

This is a valid and useful way of storing files related to your .exe - you can always navigate using relative directories from where your executable is running from, meaning you don't need to worry about where it's installed.

Alternately, if you'd like your .exe to be freely copyable to any directory, you could consider storing your data in a well known location, like the user's Application Settings directory in their user profile (for windows).

link|flag
vote up 0 vote down

Application.StartupPath should do that for you or:

private static string GetApplicationPath()
{
    return System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase);
}

http://stackoverflow.com/questions/881251/how-to-get-the-path-of-appwithout-app-exe

link|flag
vote up 1 vote down

Sounds like a perfect solution for the Isolated Storage function in .Net (System.IO.IsolatedStorage).

You access via objects and the path is controlled by .Net. It stores the items in the local settings\application data\isolated storage for each log in.

link|flag

Your Answer

Get an OpenID
or

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