I am trying to retrieve the HTML files from visited web pages while surfing with Google Chrome. It should have been on the hard disk at some point, so it can be visualized, but I do not know where to even start.
The problem is that I need to find some visited web pages that do not reside on the same URLs or are being changed after the moment of viewing. So the records in Chrome's history do not really help at all.
答案 0 :(得分:9)
If you are lucky, then you might still find the sites in your cache. Depending on your operating system, Google Chrome stores your cache files in one of the following folders. You will need to fill in your user name where necessary.
/Users/[USERNAME]/Library/Caches/Google/Chrome/
C:\Documents and Settings\[USERNAME]\Local Settings\Application Data\Google\Chrome\
C:\Users\[USERNAME]\AppData\Local\Google\Chrome\
C:\Users\[USERNAME]\AppData\Local\Google\Chrome\User Data\Default\Cache
In order to look at the files, it is possible that you will have to add the file extensions yourself (.html
, .css
, etc.).
After a quick search, I also found this utility that lets you look at the files that are still in the cache more comfortably: ChromeCacheView.
If the website you are looking for is no longer in your local cache, the cache of Google (the search engine) might be of help. You can access a Google snapshot of the site by entering the URL of the site prefixed by cache:
into the search engine, like this: cache:www.example.org
If all else fails, do not forget to try Archive.org. Similar to the Google Cache, the website you are looking for might be stored here. Archive.org also keeps older versions of the same website, while Google just keeps the newest one.
答案 1 :(得分:1)
我能够找到在chrome中缓存的html文件,只需按照以下线程
即可本地缓存中的文件
Windows 7/8: C:\ Users [USERNAME] \ AppData \ Local \ Google \ Chrome \ User Data \ Default \ Cache
我在Cache目录中找到了接近2700个文件,随机名称没有扩展名,然后我使用notepad ++在Cache目录下的所有文件中找到一个关键字,我能够找到我正在寻找的东西。
我希望这会有所帮助。 我对发布“本地缓存中的文件”
的人表示感谢