How to get the "Temporary Internet Files" folder path?
ASP.NET
3
Posts
2
Posters
0
Views
1
Watching
-
Hi, I wish to get the "Temporary Internet Files" folder Physical path, without HardCode like below; Is there any method in .Net to retrieve the below said path? string strTempFldr = "C:\\Documents and Settings\\Jay\\Local Settings\\Temporary Internet Files";
Regards, Jay :)
-
Hi, I wish to get the "Temporary Internet Files" folder Physical path, without HardCode like below; Is there any method in .Net to retrieve the below said path? string strTempFldr = "C:\\Documents and Settings\\Jay\\Local Settings\\Temporary Internet Files";
Regards, Jay :)
-
Hi Jay_se To retrieve physical path folder for "temporary internet files" use the following code string strTempFldr = Environment.GetFolderPathEnvironment.SpecialFolder.InternetCache);