C++ Builder 參考手冊(cè) ? System::Sysutils ? ExtractFileDrive
從路徑和文件名里面提取驅(qū)動(dòng)器部分
頭文件:#include <System.SysUtils.hpp>
命名空間:System::Sysutils
函數(shù)原型:
System::UnicodeString __fastcall ExtractFileDrive(const System::UnicodeString FileName);
參數(shù):
- FileName 路徑和文件名,字符串孝宗;
返回值:
- 從路徑和文件名里面的驅(qū)動(dòng)器部分样屠,包括盤(pán)符英文字母和冒號(hào)腐晾,例如 "D:"陋气。
例子:獲取應(yīng)用程序的路徑 (當(dāng)前 exe 文件的驅(qū)動(dòng)器)
void __fastcall TForm1::Button1Click(TObject *Sender)
{
UnicodeString s = Application->ExeName;
Memo1->Lines->Add(s);
s = Sysutils::ExtractFileDrive(s);
Memo1->Lines->Add(s);
}
運(yùn)行結(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 參考手冊(cè) ? System::Sysutils ? ExtractFileDrive