Reading Files from Temporary Internet Files

  • Thread starter Thread starter THE BAT
  • Start date Start date
Hello THE,

What do u mean, it's just a folder.

TB> i want to know how i can read a file from the "Temporary Internet
TB> Files" folder.

---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/members/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
 
On C# and Windows XP, i can't access the files in this folder

i try, for example

....
string fPath;
string[] files;

fPath = Environment.GetFolderPath(Environment.SpecialFolder.InternetCache);
files = System.IO.Directory.GetFileSystemEntries(fPath, "*.*");
....

and no files returned.

i try to get permission to get access to this folder using some codes in the
MSDN
but the same.

Thanks, Michael Nemtsev
 
Back
Top