LCL: ExtractShortPathNameUTF8 is available in all supported fpc versions

* convert result to UTF8, non-ascii chars seem to be allowed in some cases (issue #12449)

git-svn-id: trunk@18575 -
This commit is contained in:
vincents 2009-02-05 09:59:48 +00:00
parent 80e3207944
commit 1b27aa17ef
2 changed files with 1 additions and 8 deletions

View File

@ -193,9 +193,7 @@ function FileAgeUTF8(const FileName: string): Longint;
function DirectoryExistsUTF8(const Directory: string): Boolean;
function ExpandFileNameUTF8(const FileName: string): string;
function ExpandUNCFileNameUTF8(const FileName: string): string;
{$IFNDEF VER2_2_0}
function ExtractShortPathNameUTF8(Const FileName : String) : String;
{$ENDIF}
function FindFirstUTF8(const Path: string; Attr: Longint; out Rslt: TSearchRec): Longint;
function FindNextUTF8(var Rslt: TSearchRec): Longint;
procedure FindCloseUTF8(var F: TSearchrec);

View File

@ -149,15 +149,10 @@ begin
Result:=SysToUTF8(SysUtils.ExpandUNCFileName(UTF8ToSys(Filename)));
end;
{$IFNDEF VER2_2_0}
function ExtractShortPathNameUTF8(const FileName: String): String;
begin
// no need to convert the result back to UTF8,
// because a short path name by definition contains only
// ascii chars, and therefore is also UTF8 encoded
Result:=SysUtils.ExtractShortPathName(UTF8ToSys(FileName));
Result:=SysToUTF8(SysUtils.ExtractShortPathName(UTF8ToSys(FileName)));
end;
{$ENDIF}
function FindFirstUTF8(const Path: string; Attr: Longint; out Rslt: TSearchRec
): Longint;