How to get browser bookmark or my favorite ?
-
I wish to retrive that URL from my bookmark of either IE or Mozilla Firefox, how is it possible? And can I get the date/time that I last visit those sites?
Both browsers store bookmarks/favorites in files (I think mozilla uses xml, not shure dough). Check out those files and find a way to parse the data. But I doubt you will be able to get information about last access... Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!
-
Both browsers store bookmarks/favorites in files (I think mozilla uses xml, not shure dough). Check out those files and find a way to parse the data. But I doubt you will be able to get information about last access... Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!
Got it thanks, another query to add ... Instead of finding the XML file, I got the HTML file that has these information instead. It include the HREF as well as LAST_VISIT, one of which is LAST_VISIT="1136827040", what did the number stand for anyway? Is it date? I last open it on January 19, 2006 though.
-
Got it thanks, another query to add ... Instead of finding the XML file, I got the HTML file that has these information instead. It include the HREF as well as LAST_VISIT, one of which is LAST_VISIT="1136827040", what did the number stand for anyway? Is it date? I last open it on January 19, 2006 though.
-
I supose that is a UNIX timestamp... Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!