C++ Builder 參考手冊 ? System::Sysutils ? ExtractFilePath
從路徑和文件名里面提取路徑部分
頭文件:#include <System.SysUtils.hpp>
命名空間:System::Sysutils
函數(shù)原型:
System::UnicodeString __fastcall ExtractFilePath(const System::UnicodeString FileName);
參數(shù):
- FileName 路徑和文件名,字符串;
返回值:
- 從路徑和文件名里面提取路徑部分芦昔,即去掉文件名旺垒,保留前面所有的部分,包括文件名前面的 \ 或 /褂傀。
例子:獲取應(yīng)用程序的路徑
void __fastcall TForm1::Button1Click(TObject *Sender)
{
UnicodeString s = Application->ExeName;
Memo1->Lines->Add(s);
s = Sysutils::ExtractFilePath(s);
Memo1->Lines->Add(s);
}
運行結(jié)果:
相關(guān):
- 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
- <cstdlib>
C++ Builder 參考手冊 ? System::Sysutils ? ExtractFilePath