本帖最后由 vasto 于 2020-2-23 19:05 编辑
武汉加油,中国加油。
52PoJie在2020年情人节开放了注册。注册一个ID
看到这里有Delphi栏,可惜很少人用Delphi,我多年来一直用Delphi,给大家贡献一个 读取.lnk 快捷方式获取真实路径的程序。用得上的捧个场。用不上的不要喷。谢谢。
直接上代码
[Delphi] 纯文本查看 复制代码 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.
源代码在这:D7的。
读取.lnk获取真实路径程序.rar
(169.93 KB, 下载次数: 34)
|