How can i get the path of the current user's "Application Data" folder?
Asked Answered
B

6

43

1)how can i find out the Windows Installation drive in which the user is working.? I need this to navigate to the ApplicationData in DocumentsandSettings.

2)Also how can i get the user name too so that i can goto ApplicaitionData.? Eg: "D:\Documents and Settings\user\Application Data".

Balneal answered 27/5, 2009 at 11:26 Comment(0)
C
78

Look at combining Environment.GetFolderPath and Environment.SpecialFolder to do this.

Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)
Cacilie answered 27/5, 2009 at 11:29 Comment(0)
W
23

Depending on what you are doing you might also want to look at

Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData)

If the user is on a domain it will only be stored in their local AppData folder and not synced with their roaming profile.

Whiteside answered 27/5, 2009 at 11:46 Comment(1)
Thank you, exactly the situation I needed to deal with. The stuff I need is indeed in AppData/Local and not AppData/Roaming, which is returned by default by this callGhats
P
5

Have a look at the Environment.SpecialFolders

Environment.SpecialFolder.ApplicationData;
Environment.SpecialFolder.System

that should get you round the username requirement as well.

Piglet answered 27/5, 2009 at 11:29 Comment(0)
K
3

Have a look at the System.Environment class and its properties and methods, e.g:

string systemDir = System.Environment.SystemDirectory;
string docs = System.Environment.GetFolderPath(
    System.Environment.SpecialFolder.MyDocuments));

string systemDrive = System.IO.Path.GetPathRoot(systemDir);

The first one returns "C:\Windows\system32" for example and the second one "C:\Documents and Settings\USERNAME\My Documents".

Korns answered 27/5, 2009 at 11:31 Comment(0)
S
2

Try this:

string filePath = Environment.GetFolderPath(System.Environment.SpecialFolder.ApplicationData);
Strangulation answered 27/5, 2009 at 11:29 Comment(0)
C
2

1)how can i find out the Windows Installation drive in which the user is working.?

    var systemDrive =  Environment.ExpandEnvironmentVariables("%systemdrive%");

I need this to navigate to the ApplicationData in DocumentsandSettings.

You don't really require to fetch the value of either system drive or currently logged in user name to achieve this. There are predefined environment variables %localAppData% and %appData% which give you fully qualified path of these directories as shown in the code below:

var localApplicationData = Environment.ExpandEnvironmentVariables("%localappdata%"); 
//this gives C:\Users\<userName>\AppData\Local

var roamingApplicationData = Environment.ExpandEnvironmentVariables("%appdata%");
//this gives C:\Users\<userName>\AppData\Roaming

2)Also how can i get the user name too so that i can goto ApplicaitionData.? Eg: "D:\Documents and Settings\user\Application Data".

Again, you don't need user name to get the application data path as I've discussed above. Still, for the sake of knowledge you can fetch it from %username% environment variable as shown below:

    var currentUserName = Environment.ExpandEnvironmentVariables("%username%");
Cloudberry answered 17/2, 2017 at 11:29 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.