[delphi]老代码维护 -- Delphi 从 .lnk 文件获取真正路径的程序[zt]
guest
浏览(662) -
2020-10-24 18:34:20 发表
编辑
关键字:
[2020-10-24 18:36:19 最后更新]
[delphi]老代码维护 -- Delphi 从 .lnk 文件获取真正路径的程序
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ActiveX, ComObj, ShlObj, StdCtrls, shellAPI;
type
TForm1 = class(TForm)
Edit1: TEdit;
Edit2: TEdit;
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
var
Int_link : IShellLink;
int_File : IPersistFile;
SFileName : WideString;
DirName : String;
OutPutFileName : PChar;
WinData : win32_find_data;
begin
SFileName := PChar(edit1.Text);
Int_link := CreateComObject(CLSID_Shelllink) as IShellLink;
int_File := Int_link as IPersistFile;
int_File.Load(pwchar(SFileName), STGM_READ);
Setlength(DirName, MAX_PATH);
OutPutFileName := PChar(DirName);
Int_link.GetPath(OutPutFileName, max_path, WinData, 0);
Edit2.text := OutPutFileName;
end;
end.
本帖子属于以下条目()
NEWBT官方QQ群1: 276678893
可求档连环画,漫画;询问文本处理大师等软件使用技巧;求档softhub软件下载及使用技巧.
但不可"开车",严禁国家敏感话题,不可求档涉及版权的文档软件.
验证问题说明申请入群原因即可.