ExtractFilePath - C++ Builder

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


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

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

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

参数:

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

返回值:

  • 从路径和文件名里面提取路径部分,即去掉文件名,保留前面所有的部分,包括文件名前面的 \ 或 /。

例子:获取应用程序的路径

void __fastcall TForm1::Button1Click(TObject *Sender)
{
    UnicodeString s = Application->ExeName;
    Memo1->Lines->Add(s);
    s = Sysutils::ExtractFilePath(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 ➙ ExtractFilePath

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