Fórum Pegar lista meus favoritos #264219
05/01/2005
0
Abaixo a rotina que baixei.
function GetIEFavoritos(const favpath: string):TStrings;
var
searchrec:TSearchrec;
str:TStrings;
path,dir,filename:String;
Buffer: array[0..2047] of Char;
found:Integer;
begin
str:=TStringList.Create;
//Pega todos os nomes de arquivo no path dos favoritos
path:=FavPath+´\*.url´;
dir:=ExtractFilepath(path);
found:=FindFirst(path,faAnyFile,searchrec);
while found=0 do begin
SetString(filename, Buffer, GetPrivateProfileString(´InternetShortcut´,
PChar(´URL´), NIL, Buffer, SizeOf(Buffer), PChar(dir+searchrec.Name)));
str.Add(filename);
found:=FindNext(searchrec);
end;
found:=FindFirst(dir+´\*.*´,faAnyFile,searchrec);
while found=0 do begin
if ((searchrec.Attr and faDirectory) > 0) and (searchrec.Name[1]´.´) then
str.AddStrings(GetIEFavourites(dir+´\´+searchrec.name));
found:=FindNext(searchrec);
end;
FindClose(searchrec);
Result:=str;
end;
procedure TForm1.Button1Click(Sender: TObject);
var pidl: PItemIDList;
FavPath: array[0..MAX_PATH] of char;
begin
SHGetSpecialFolderLocation(Handle, CSIDL_FAVORITES, pidl);
SHGetPathFromIDList(pidl, favpath);
ListBox1.Items:= GetIEFavoritos (StrPas(FavPath));
end;
Jcmsistemas
Curtir tópico
+ 0Posts
05/01/2005
Massuda
Gostei + 0
05/01/2005
Tatuweb
[b:dc88230caf]str.AddStrings([color=blue:dc88230caf]GetIEFavourites[/color:dc88230caf](dir+´\´+searchrec.name));[/b:dc88230caf]
para
[b:dc88230caf]str.AddStrings([color=blue:dc88230caf]GetIEFavoritos[/color:dc88230caf](dir+´\´+searchrec.name));[/b:dc88230caf]
Gostei + 0
05/01/2005
Jcmsistemas
Gostei + 0
Clique aqui para fazer login e interagir na Comunidade :)