以编程方式枚举Microsoft Edge历史记录

时间:2015-08-06 10:37:53

标签: c++ winapi microsoft-edge

我使用FindFirstUrlCacheEntry / FindNextUrlCacheEntry Win API以C ++编程方式获取Internet Explorer的历史记录。

您能告诉我如何使用C ++(Windows API)获取Microsoft Edge历史记录吗?

2 个答案:

答案 0 :(得分:1)

此时不可能。可能想要使用'建议路线'在下面的一些链接。

开发者反馈主页 - https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer

开发者反馈Twitter - https://www.twitter.com/msedgedev

功能建议 - https://windowsphone.uservoice.com/forums/101801-feature-suggestions/category/18985-web-browsing

希利在坦帕

答案 1 :(得分:0)

历史记录存储在\ AppData \ Local \ Microsoft \ Windows \ WebCache \ WebCacheV01.dat中。它使用Microsoft的可扩展存储引擎来存储数据。我曾经使用过C++ wrapper for accessing Extensible Storage Engine files来访问此文件中的数据。

WebCacheV01.dat中的“容器”表告诉哪些“ Container_X”表的类型为“内容”或“历史记录”,以及安全目录及其顺序。您可以使用ESEDatabaseView utility来查看WebCacheV01.dat文件中的数据。