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 ArticleAnswer 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 ArticleAnswer 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 ArticleAnswer 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 ArticleAnswer 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 ArticleAnswer 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 ArticleHow 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