ExtractFileName - C++ Builder

C++ Builder 参考手册 ➙ System::Sysutils ➙ ExtractFileName


从路径和文件名里面提取文件名部分

头文件:#include
命名空间:System::Sysutils
函数原型:

System::UnicodeString __fastcall ExtractFileName(const System::UnicodeString FileName);

参数:

  • FileName 路径和文件名,字符串;

返回值:

  • 从路径和文件名里面提取文件名部分,包括文件名和后缀。

例子:获取应用程序文件名部分

void __fastcall TForm1::Button1Click(TObject *Sender)
{
    UnicodeString s = Application->ExeName;
    Memo1->Lines->Add(s);
    s = Sysutils::ExtractFileName(s);
    Memo1->Lines->Add(s);
}

运行结果:

运行结果

相关:

  • 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
  • std::_fullpath, std::_tfullpath, std::_wfullpath
  • std::_makepath, std::_tmakepath, std::_wmakepath
  • std::_splitpath, std::_tsplitpath, std::_wsplitpath

C++ Builder 参考手册 ➙ System::Sysutils ➙ ExtractFileName

你可能感兴趣的:(ExtractFileName - C++ Builder)