Quantcast
Channel: How can i get the path of the current user's "Application Data" folder? - Stack Overflow
Browsing latest articles
Browse All 7 View Live

Answer by RBT for How can i get the path of the current user's "Application...

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...

View Article



Answer by Twelve47 for How can i get the path of the current user's...

Depending on what you are doing you might also want to look atEnvironment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData)If the user is on a domain it will only be stored in their local...

View Article

Answer by M4N for How can i get the path of the current user's "Application...

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(...

View Article

Answer by Magnus Johansson for How can i get the path of the current user's...

Try this:string filePath = Environment.GetFolderPath(System.Environment.SpecialFolder.ApplicationData);

View Article

Answer by Eoin Campbell for How can i get the path of the current user's...

Have a look at the Environment.SpecialFoldersEnvironment.SpecialFolder.ApplicationData;Environment.SpecialFolder.Systemthat should get you round the username requirement as well.

View Article


Answer by Martin Harris for How can i get the path of the current user's...

Look at combining Environment.GetFolderPath and Environment.SpecialFolder to do this.Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)

View Article

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

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...

View Article
Browsing latest articles
Browse All 7 View Live




Latest Images