mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-01 15:03:57 +02:00
9 lines
179 B
PHP
9 lines
179 B
PHP
{%MainUnit fileutil.pas}
|
|
|
|
|
|
function ExtractShortPathNameUTF8(const FileName: String): String;
|
|
begin
|
|
Result:=SysToUTF8(SysUtils.ExtractShortPathName(UTF8ToSys(FileName)));
|
|
end;
|
|
|