C++ Builder 参考手册 ➙ System::Sysutils ➙ SameFileName
检查两个文件名是否相同,使用当前的地区和语言
头文件:#include <System.SysUtils.hpp>
命名空间:System::Sysutils
函数原型:
bool __fastcall SameFileName(const System::UnicodeString S1, const System::UnicodeString S2);
参数:
- S1:文件名/文件夹名,字符串;
- S2:文件名/文件夹名,字符串;
返回值:
- true:S1 和 S2 是相同的文件;
- false:S1 和 S2 是不同的文件;
- 这个函数通过 AnsiCompareFileName(S1, S2) == 0 实现判断两个文件名是否相同,请参考 AnsiCompareFileName 的说明和例子。
相关:
- System::Sysutils::AnsiCompareFileName
- System::Sysutils::SameFileName
- System::Sysutils::ExpandFileName
- System::Sysutils::ExpandFileNameCase
- System::Sysutils::ExpandUNCFileName
- System::Sysutils::GetCurrentDir
- System::Sysutils::SetCurrentDir
- System::Sysutils::GetHomePath
- System::Sysutils::ChangeFileExt
- System::Sysutils::ChangeFilePath
- System::Sysutils::ExtractFileDir
- System::Sysutils::ExtractFileDrive
- System::Sysutils::ExtractFileExt
- System::Sysutils::ExtractFileName
- System::Sysutils::ExtractFilePath
- System::Sysutils::ExtractRelativePath
- System::Sysutils::ExtractShortPathName
- System::Sysutils
- System::Ioutils::TPath
- System::Ioutils
- std::_fullpath, std::_tfullpath, std::_wfullpath
- std::_makepath, std::_tmakepath, std::_wmakepath
- std::_splitpath, std::_tsplitpath, std::_wsplitpath
- <cstdlib>
C++ Builder 参考手册 ➙ System::Sysutils ➙ SameFileName
网友评论