SysUtils.AnsiLowerCaseFileName
From RAD Studio VCL Reference
Contents |
Delphi Information
From SysUtils.pas
function AnsiLowerCaseFileName(const S: string): string; overload;
Unit: SysUtils
Type: function
Visibility: public
C++ Information
From SysUtils.hpp
System::UnicodeString __fastcall AnsiLowerCaseFileName(System::UnicodeString S);
Unit: SysUtils
Type: function
Description
Converts a file name to lowercase.
AnsiLowerCaseFileName returns a string that is a copy of S converted to lowercase. The conversion uses the current locale.
Note: On Windows, AnsiLowerCaseFileName supports lowercase conversion idiosyncrasies of file names in Asian locales (Zenkaku).
On Linux and Macintosh or in locales that do not use multi-byte character systems (MBCS), AnsiLowerCaseFileName is identical to AnsiLowerCase.