IE has a WinInet API, such as GetUrlCacheEntryInfo, for reading and managing IE browser cache.
Is there a similar API for browsers without IE like Firefox or Chrome? If so, where can I get more information?
thanks
Update:
According to the following ( Accessing the Firefox Cache from the XPCOM Component ), the WinInet GetUrlCacheEntryInfo () function can be executed using nsICacheSession.openCacheEntry () to get nsICacheEntryDescriptor. Is there an equivalent WinInet function CreateUrlCacheEntry () that will create a cache entry?
source
share