- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要将旧的Win98短路径名更改为长路径名。我有一个在 Delphi 4 中运行良好的例程,但是当我升级到 Delphi 2009 和 Unicode 时,它无法与 Unicode 字符串一起运行。
我环顾四周,找不到它的 Unicode 兼容版本。
看来正确的例程是 GetLongPathName from the WinAPI 。但它似乎不在Delphi 2009的SysUtils库中,我一直无法弄清楚如何正确声明它以访问WinAPI例程。
此外,看起来确实很难打电话,因为我已经读过SO问题:Delphi TPath.GetTempPath result is cropped但这并没有帮助我到达一垒。
有人可以解释一下如何声明这个函数并在 Delphi 2009 中正确使用它传递 Unicode 字符串吗?
最佳答案
当然。您不需要单独的单元,并且可以在任何地方声明 GetLongPathName:
function GetLongPathName(ShortPathName: PChar; LongPathName: PChar;
cchBuffer: Integer): Integer; stdcall; external kernel32 name 'GetLongPathNameW';
function ExtractLongPathName(const ShortName: string): string;
begin
SetLength(Result, GetLongPathName(PChar(ShortName), nil, 0));
SetLength(Result, GetLongPathName(PChar(ShortName), PChar(Result), length(Result)));
end;
procedure Test;
var
ShortPath, LongPath: string;
begin
ShortPath:= ExtractShortPathName('C:\Program Files');
ShowMessage(ShortPath);
LongPath:= ExtractLongPathName(ShortPath);
ShowMessage(LongPath);
end;
关于delphi - 如何使用 Delphi 2009 和 Unicode 字符串正确调用 GetLongPathName?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3527221/
当我尝试使用函数 GetLongPathName() 编译我的代码时,编译器告诉我该函数未声明。 我已经阅读了位于@http://msdn.microsoft.com/en-us/library/aa
我想像使用 GetShortPathName 一样使用 GetLongPathName 函数: 使用 NULL 作为输出参数调用函数以获取要分配的大小。 动态分配字符串。 使用分配的字符串再次调用该函
我需要将 8.3 约定中的路径转换为完整路径。在 Perl 中,我可以使用 Win32::GetLongPathName()正如 How do I get full Win32 path from 8
为了确定由相对路径或中间包含 \..\ 的路径指定的文件的规范路径,stackoverflow 建议使用 GetFullPathName() here或 GetLongPathName() here
我需要将旧的Win98短路径名更改为长路径名。我有一个在 Delphi 4 中运行良好的例程,但是当我升级到 Delphi 2009 和 Unicode 时,它无法与 Unicode 字符串一起运
我是一名优秀的程序员,十分优秀!