Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Getting the temporary internet folder
Message
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Divers
Thread ID:
00803715
Message ID:
00803813
Vues:
33
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
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform