Get Windows System directory [modified]
-
Hi I want to get windows system directory? I have to save some files there and then access to them. Please help me. -- modified at 2:22 Monday 4th September, 2006
-
Hi I want to get windows system directory? I have to save some files there and then access to them. Please help me. -- modified at 2:22 Monday 4th September, 2006
-
Hi I want to get windows system directory? I have to save some files there and then access to them. Please help me. -- modified at 2:22 Monday 4th September, 2006
Hello
string SystemPath = Environment.GetFolderPath(Environment.SpecialFolder.System);
Regards:rose:
-
Hi I want to get windows system directory? I have to save some files there and then access to them. Please help me. -- modified at 2:22 Monday 4th September, 2006
It isn't recommended to save files in the system directory and running under Vista it isn't allowed unless you are running with specific elevated privileges (usually only given to installer apps.) The correct way to find it is
Environment.GetFolderPath(Environment.SpecialFolder.System)