This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
开发者_Python百科Closed last year.
Improve this questionI'm wondering if there is a variable in Firefox, Internet Explorer and Google Chrome, etc which contains the location of the bookmarks?
For IE you want to call SHGetKnownFolderPath() with FOLDERID_Favorites.
For Mozilla you can use the Directory Service and ask for "Favs". This may vary depending on your OS. See the linked header file for details.
For Chrome, see this.
精彩评论