Click here to Skip to main content
16,004,778 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to get some files from INetCache(Temporary Internet Files).
How can I do that.
I want to get an html stream file which name like that 'printDoc'.
I can see docs if I open this folder.
But at cmd and c# can't find this files.
C#
string tempFolder = Environment.GetFolderPath(Environment.SpecialFolder.InternetCache);
string path = Path.Combine(tempFolder, "printDoc");


And also if I get all files from tempFolder. It shows only 2 file which names 'counters.dat','desktop.ini'

what's wrong?
Posted
Updated 7-Jan-16 1:24am
v2
Comments
dan!sh 7-Jan-16 7:15am    
Have tried something yet? Also update your question with details. What do you mean by "get some files"?
amagitech 7-Jan-16 7:27am    
I wrote

1 solution

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900