Link to home
Start Free TrialLog in
Avatar of Yevgen
Yevgen

asked on

How to get file name and path from a link file?

I need to get the file name and path from a link file, does anyone knows how it can be done?
Avatar of Gani2001
Gani2001
Flag of Sudan image

Hi there,

There are many file naming functions in Delphi

ExtractFileName return file name with out path

ExtractFilePath return file path

or u can use TSearchRec to get file name

FindFirst(Str1+'\*.*',faAnyFile,F)

you can get file name like this F.Name

Abdelghani
Hi there,

There are many file naming functions in Delphi

ExtractFileName return file name with out path

ExtractFilePath return file path

or u can use TSearchRec to get file name

FindFirst(Str1+'\*.*',faAnyFile,F)

you can get file name like this F.Name

Abdelghani
Avatar of Yevgen
Yevgen

ASKER

Gani2001,
What you suggested is to find the path and filename of the link(.lnk) file but what i need is to find the file to wich the link file is attached...
this is example from the paq's,hope is some help:


unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  StdCtrls,shlobj,activex,comobj,commctrl,menus;

type
  TForm1 = class(TForm)
    Button1: TButton;
    OpenDialog1: TOpenDialog;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }

  public
    { Public declarations }
  end;

var
  Form1: TForm1;
   NeedToUninitialize : boolean = false;
implementation

{$R *.DFM}

function LoadShellLink(shellLinkFile: string;
                       var description, linkedObj, params: string;
                       var pidl: PItemIDList; var findData: TWin32FindData;
                       var iconPath: string; var iconIndex: integer;
                       var workingDir, hotKey: string;
                       var showCmd: integer) : boolean;
var sl  : IShellLink;
    w1  : word;
    s1  : string;
    wfd : TWin32FindData;
    i1  : integer;
begin
  NeedToUninitialize:=NeedToUninitialize or succeeded(CoInitialize(nil));
  sl:=CreateComObject(CLSID_ShellLink) as IShellLink;
  result:=(sl as IPersistFile).Load(PWideChar(wideString(ShellLinkFile)),0)=S_OK;
  if not result then exit;
  SetLength(description,MAX_PATH+1);
  if sl.GetDescription(PChar(description),MAX_PATH)=NOERROR then description:=string(PChar(description))
  else                                                           description:='';
  SetLength(s1,MAX_PATH+1);
  if sl.GetPath(PChar(s1),MAX_PATH,wfd,0)=NOERROR then begin
    linkedObj:=string(PChar(s1));
    findData :=wfd;
  end else begin
    linkedObj:='';
    ZeroMemory(@findData,sizeOf(TWin32FindData));
  end;
  SetLength(params,MAX_PATH+1);
  if sl.GetArguments(PChar(params),MAX_PATH)=NOERROR then params:=string(PChar(params))
  else                                                    params:='';
  if sl.GetIDList(pidl)<>NOERROR then pidl:=nil;
  SetLength(s1,MAX_PATH+1);
  if sl.GetIconLocation(pchar(s1),MAX_PATH,i1)=NOERROR then begin
    iconPath :=string(pchar(s1));
    iconIndex:=i1;
  end else begin
    iconPath :='';
    iconIndex:=-1;
  end;
  SetLength(workingDir,MAX_PATH+1);
  if sl.GetWorkingDirectory(PChar(workingDir),MAX_PATH)=NOERROR then workingDir:=string(PChar(workingDir))
  else                                                               workingDir:='';
  sl.GetHotKey(w1);
  if w1 and (HOTKEYF_ALT     shl 8)<>0 then w1:=(w1 and (not (HOTKEYF_ALT     shl 8))) or scAlt;
  if w1 and (HOTKEYF_CONTROL shl 8)<>0 then w1:=(w1 and (not (HOTKEYF_CONTROL shl 8))) or scCtrl;
  if w1 and (HOTKEYF_SHIFT   shl 8)<>0 then w1:=(w1 and (not (HOTKEYF_SHIFT   shl 8))) or scShift;
  hotKey:=ShortCutToText(w1);
  if sl.GetShowCmd(showCmd)<>NOERROR then showCmd:=-1;
end;

procedure FreePidl(var pidl: PItemIDList);
var malloc : IMalloc;
begin
  if (pidl<>nil) and (SHGetMalloc(malloc)=NOERROR) then begin
    malloc.Free(pidl);
    pidl:=nil;
  end;
end;

procedure TForm1.Button1Click(Sender: TObject);
var
  pi:PItemIDList;
  s1,Desc,s2:String;
  icon,workdir,htkey:string;
  Data: TWin32FindData;
  i,ii : integer;
begin
  opendialog1.execute;
  loadshelllink(opendialog1.filename,desc,s1,s2,pi,Data,icon,i,workdir,htkey,ii);
 //opendialog1.filename now contains the correct file path.
 showmessage(opendialog1.filename);
//for other possible infos
 {
  ShowMessage('File ShortCut : '+opendialog1.filename+#13#10+'File TruePath : '+s1+#13#10+'Working Dir : '+workdir+#13#10
              +'HotKey : '+htkey+#13#10+'Show Command : '+inttostr(ii));
  }
 FreePidl(pi);
end;


initialization
finalization
  if NeedToUninitialize then CoUninitialize;

end.
Avatar of Yevgen

ASKER

Inthe,

can you please explain me wehre exactly this function gets the file path and name and what is going on there?
You have to call LoadShellLink('c:\path\example.lnk') and give in some local variables. The variable "linkedObj" will tell you the path and name of the linked object.

Regards, Madshi.
the .lnk file is loaded into a ipersistfile and read by a ishelllink which we create.
when dealing with CreateComObject we need the initialize coinitialize ..stuff so better not delete that
from there all the stuff is read like filename,description,shortcut keys etc).
sl.getnamepath is the part your most interested in,as it gets you your path.
you may probably want to delete all the extra stuff if you want the file path only.

heres the smaller example that only gets the path not all the other stuff:


uses shlobj,activex,comobj;



var
 Form1: TForm1;
  NeedToUninitialize : boolean = false;
implementation

{$R *.DFM}

function LoadShellLink(shellLinkFile : string;
                    findData: TWin32FindData ) : boolean;
var sl  : IShellLink;
   s1  : string;
   wfd : TWin32FindData;
begin
 NeedToUninitialize:=NeedToUninitialize or succeeded(CoInitialize(nil));
 sl:=CreateComObject(CLSID_ShellLink) as IShellLink;
 result:=(sl as IPersistFile).Load(PWideChar(wideString(ShellLinkFile)),0)=S_OK;
 if not result then exit;
 sl.GetPath(PChar(s1),MAX_PATH,wfd,0);
end;

procedure TForm1.Button1Click(Sender: TObject);
var
 s1:string;
 Data: TWin32FindData;
begin
 opendialog1.execute;
 loadshelllink(opendialog1.filename,Data);
 showmessage(opendialog1.filename);
end;

initialization
finalization
 if NeedToUninitialize then CoUninitialize;

end.
totally ignore last comment ,ive pasted from wrong delphi window

oh and i should note that opendialg does it for you (well does for me on win2k) so showmessage(opendialog1.filename) will already show the linked file.
ASKER CERTIFIED SOLUTION
Avatar of inthe
inthe

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Yevgen

ASKER

Thanks Inthe, i used your code and it works great...
Oh, before you posted the comment about not deleting the CoInitialize i did delete it and it still worked...