Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Win32/Win64 API (native code) (https://www.delphipraxis.net/17-win32-win64-api-native-code/)
-   -   Delphi Verknüpfung auslesen und probleme (https://www.delphipraxis.net/65169-verknuepfung-auslesen-und-probleme.html)

delphinia 13. Mär 2006 11:41


Verknüpfung auslesen und probleme
 
Auslesen der Informationen einer *.lnk wie folgt:

Delphi-Quellcode:
unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  StdCtrls, ShlObj, ComObj, ActiveX, CommCtrl;

type
 PShellLinkInfoStruct = ^TShellLinkInfoStruct;
  TShellLinkInfoStruct = record
    FullPathAndNameOfLinkFile: array[0..MAX_PATH] of Char;
    FullPathAndNameOfFileToExecute: array[0..MAX_PATH] of Char;
    ParamStringsOfFileToExecute: array[0..MAX_PATH] of Char;
    FullPathAndNameOfWorkingDirectroy: array[0..MAX_PATH] of Char;
    Description: array[0..MAX_PATH] of Char;
    FullPathAndNameOfFileContiningIcon: array[0..MAX_PATH] of Char;
    IconIndex: Integer;
    HotKey: Word;
    ShowCommand: Integer;
    FindData: TWIN32FINDDATA;
  end;

 
  TForm1 = class(TForm)
    Edit1: TEdit;
    Button1: TButton;
    Memo1: TMemo;
    procedure Button1Click(Sender: TObject);
  private
    { Private-Deklarationen }
  public
    { Public-Deklarationen }
  end;

var
  Form1: TForm1;

implementation

{$R *.DFM}

procedure GetLinkInfo(lpShellLinkInfoStruct: PShellLinkInfoStruct);
var
  ShellLink: IShellLink;
  PersistFile: IPersistFile;
  AnObj: IUnknown;
begin
  // access to the two interfaces of the object
  AnObj      := CreateComObject(CLSID_ShellLink);
  ShellLink  := AnObj as IShellLink;
  PersistFile := AnObj as IPersistFile;

  // Opens the specified file and initializes an object from the file contents.
  PersistFile.Load(PWChar(WideString(lpShellLinkInfoStruct^.FullPathAndNameOfLinkFile)), 0);
  with ShellLink do
  begin
    // Retrieves the path and file name of a Shell link object.
    GetPath(lpShellLinkInfoStruct^.FullPathAndNameOfFileToExecute,
      SizeOf(lpShellLinkInfoStruct^.FullPathAndNameOfLinkFile),
      lpShellLinkInfoStruct^.FindData,
      SLGP_UNCPRIORITY);

    // Retrieves the description string for a Shell link object.
    GetDescription(lpShellLinkInfoStruct^.Description,
      SizeOf(lpShellLinkInfoStruct^.Description));

    // Retrieves the command-line arguments associated with a Shell link object.
    GetArguments(lpShellLinkInfoStruct^.ParamStringsOfFileToExecute,
      SizeOf(lpShellLinkInfoStruct^.ParamStringsOfFileToExecute));

    // Retrieves the name of the working directory for a Shell link object.
    GetWorkingDirectory(lpShellLinkInfoStruct^.FullPathAndNameOfWorkingDirectroy,
      SizeOf(lpShellLinkInfoStruct^.FullPathAndNameOfWorkingDirectroy));

    // Retrieves the location (path and index) of the icon for a Shell link object.
    GetIconLocation(lpShellLinkInfoStruct^.FullPathAndNameOfFileContiningIcon,
      SizeOf(lpShellLinkInfoStruct^.FullPathAndNameOfFileContiningIcon),
      lpShellLinkInfoStruct^.IconIndex);

    // Retrieves the hot key for a Shell link object.
    GetHotKey(lpShellLinkInfoStruct^.HotKey);

    // Retrieves the show (SW_) command for a Shell link object.
    GetShowCmd(lpShellLinkInfoStruct^.ShowCommand);
  end;
end;

procedure TForm1.Button1Click(Sender: TObject);
const
  br = #13#10;
var
  LinkInfo: TShellLinkInfoStruct;
  s: string;

begin
 Memo1.Clear;
  FillChar(LinkInfo, SizeOf(LinkInfo), #0);
  StrLCopy(LinkInfo.FullPathAndNameOfLinkFile, PChar(Edit1.text), 255);

  GetLinkInfo(@LinkInfo);
  with LinkInfo do
    s := FullPathAndNameOfLinkFile + br +
      FullPathAndNameOfFileToExecute + br +
      ParamStringsOfFileToExecute + br +
      FullPathAndNameOfWorkingDirectroy + br +
      Description + br +
      FullPathAndNameOfFileContiningIcon + br +
      IntToStr(IconIndex) + br +
      IntToStr(LoByte(HotKey)) + br +
      IntToStr(HiByte(HotKey)) + br +
      IntToStr(ShowCommand) + br +
      FindData.cFileName + br +
      FindData.cAlternateFileName;
  Memo1.Lines.Add(s);
end;

end.


Das Problem es funktioniert nicht richtig!
Erstelle ich einen zB.: einen Link mit Windowshilfe - Rechtklick auf ein Icon und "Verknüpfung erstellen" wählen und dieses dann sogleich auslese werden mir keine Icon Informationen ausgegeben!

Erst wenn ich über die Iconeigenschaften dieser Verknüpfung ein Icon manuell wähle - bekomme ich diese Informationen auch mit dem obigen Code!

Nun meine Frage - wie kann ich besser ein Link auslesen?
Irgendwie schafft Windows das doch auch ;)

shmia 13. Mär 2006 13:34

Re: Verknüpfung auslesen und probleme
 
Ich kann dir die Unit JclShell aus der JCL 1.97 empfehlen!!
(Funktion ShellLinkResolve)
Da bekommst du 1.) gut getesteten Programmcode und 2.) eine umfangreiche aber wenig
Platz fresende Bibliothek dazu.

delphinia 13. Mär 2006 15:01

Re: Verknüpfung auslesen und probleme
 
danke für deinen Hinweis auf die JCL

hab es auch versucht:


Delphi-Quellcode:
function GetLinkTarget(const link: string): string;
var
  LinkInfo: TShellLink;
begin
  try
    LinkInfo.IdList := nil;
    ShellLinkResolve(Link, LinkInfo);
    result := LinkInfo.Target;
  finally
    ShellLinkFree(LinkInfo);
  end;
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
ShowMEssage(GetLinkTarget('C:\t\1.lnk'));
end;
aber das geht nicht ;( - klicke ich auf den Button ist die Message leer

shmia 13. Mär 2006 15:44

Re: Verknüpfung auslesen und probleme
 
OleCheck nicht vergessen:
Delphi-Quellcode:
function GetLinkTarget(const link: string): string;
var
  LinkInfo: TShellLink;
begin
  try
    LinkInfo.IdList := nil;
    OleCheck(ShellLinkResolve(Link, LinkInfo));
  //^^^^^^^^ 
    result := LinkInfo.Target;
  finally
    ShellLinkFree(LinkInfo);
  end;
end;

delphinia 13. Mär 2006 16:11

Re: Verknüpfung auslesen und probleme
 
aaaha danke

musste bisschen suchen um rauszufinden welche unit ich dafür einbinden muss.
den über die Hilfe fand ich zu OleCheck nichts.

hat jemand noch weitere Infos zu OleCheck was das ist was es macht etc. eventuell auch zu der Unit ComObj?

shmia 13. Mär 2006 16:15

Re: Verknüpfung auslesen und probleme
 
Unit ComObj ist korrekt.
OleCheck prüft den Rückgabewert (Typ HRESULT) und wirft wenn nötig (z.B. LNK-Datei nicht vorhanden) eine Exception.

renekr 10. Apr 2006 11:22

Re: Verknüpfung auslesen und probleme
 
Hi,
kann es sein das ich mit GetLinkTarget nur den Dos filename rausbekomme?
Also mit ~~ wenn der Dateiname länger wie 8 Zeichen ist.?

Danke.


Alle Zeitangaben in WEZ +1. Es ist jetzt 10:18 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz