function GetShortName(const FileName: String): String;
var
pFileName: array[0..2048] of char;
begin
GetShortPathName(PChar(FileName), pFileName, 2048);
result := StrPas(pFileName);
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
memo1.Text:=GetShortName('C:\Program Files (x86)\InstallShield Installation Information\{3EA3D312-6FBA-422F-BC4E-F6072B75E506}\');
end;
Copyright © 2014 DelphiW.com 开发 源码 文档 技巧 All Rights Reserved
晋ICP备14006235号-8 晋公网安备 14108102000087号
执行时间: 0.041324138641357 seconds