- 人气:
- 放大
- 缩小
- 二维码
- 赞赏
delphi 长文件路径转换短文件路径
转换前:
C:\Users\zhangshuai\Desktop\codesnip-develop\codesnip-develop
转换后:
C:\Users\ZhangSH~1\Desktop\CODESN~1\CODESN~1
function LongToShortFilePath(const LongName: string): string;
begin
SetLength(Result, MAX_PATH);
SetLength(Result, GetShortPathName(PChar(LongName), PChar(Result), MAX_PATH));
end;