Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Getting the temporary internet folder
Message
General information
Forum:
ASP.NET
Category:
Other
Miscellaneous
Thread ID:
00803715
Message ID:
00803813
Views:
28
Winan,

>how do I get the location of temporary internet folder? please help

To get the location of special Internet directories, use the Environment.GetFolderPath method, and specify one of the Environment.SpecialFolder enumeration values as the method parameter.

For example, to get the directory for temporary Internet files:
Environment.GetFolderPath(Environment.SpecialFolder.InternetCache);
To get the directory of Internet cookies:
Environment.GetFolderPath(Environment.SpecialFolder.Cookies);
To get the directory of Internet History items:
Environment.GetFolderPath(Environment.SpecialFolder.History);
Regards,
Kevin McNeish
Eight-Time .NET MVP
VFP and iOS Author, Speaker & Trainer
Oak Leaf Enterprises, Inc.
Chief Architect, MM Framework
http://www.oakleafsd.com
Previous
Reply
Map
View

Click here to load this message in the networking platform