S Siegfried Heintze Dec 20, 2003 #1 Can someone point me to an example of programmatically retrieving all the favorites stored in IE?
C Cor Dec 21, 2003 #2 Hi Siegfried, The favorites are not stored in IE but in the personal folder as seperate files You can find the path to it with System.Environment.GetFolderPath(Environment.SpecialFolder.Favorites) I hope it brings you on the route? Cor
Hi Siegfried, The favorites are not stored in IE but in the personal folder as seperate files You can find the path to it with System.Environment.GetFolderPath(Environment.SpecialFolder.Favorites) I hope it brings you on the route? Cor
M Mike Perrin Dec 22, 2003 #3 The favorites have the extension ".url" and are in ini format. Have a look at this page for a way to parse them: http://www.codeproject.com/csharp/cs_ini.asp
The favorites have the extension ".url" and are in ini format. Have a look at this page for a way to parse them: http://www.codeproject.com/csharp/cs_ini.asp