IE has WinInet API, such as GetUrlCacheEntryInfo, to read and manipulate IE browser cache.

Is there a similar API for non IE browsers such as Firefox or Chrome? If so where can I get more info?

Thanks

Update:

According to following (http://stackoverflow.com/questions/61453/accessing-firefox-cache-from-an-xpcom-component) the WinInet function GetUrlCacheEntryInfo() can be accomplished by nsICacheSession.openCacheEntry() to get nsICacheEntryDescriptor. Is there an equivalent WinInet function CreateUrlCacheEntry() which will create a cache entry?

link|improve this question

57% accept rate
feedback

5 Answers

Doesn't seem like it. All solutions I've seen brute-force it:

http://www.codeproject.com/KB/system/firefoxbrowsercache.aspx

link|improve this answer
stackoverflow.com/questions/61453/… explains – MaxK Nov 29 '09 at 2:37
feedback

You mean as a web developer or as a browser developer?

link|improve this answer
1  
This should have been a comment. – BalusC Nov 29 '09 at 2:39
yeah, I think I clicked in the wrong panel... I realized that after I hit "save".... – benc Dec 2 '09 at 17:45
feedback

I was looking for the same thing, and here it is for Chrome: http://dev.chromium.org/developers/design-documents/disk-cache

link|improve this answer
feedback

for web page usage, you may want to view the YUI storage utility

http://developer.yahoo.com/yui/storage/

link|improve this answer
feedback
up vote 0 down vote accepted

It turns out that calling nsICacheSession.openCacheEntry() with ACCESS_READ_WRITE will create the cache entry.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.