GetHomePath - C++ Builder

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


获取操作系统当前用户可存放 (写入) 数据的位置 (AppData 文件夹)

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

System::UnicodeString __fastcall GetHomePath(void);

参数:

  • 无;

返回值:

  • 当前用户储存数据的位置,对于 Windows 操作系统是 AppData 文件夹,即 C:\Users\用户名\AppData\Roaming
  • 对于新项目和跨平台的项目,建议使用 System::Ioutils::TPath 的 GetHomePath 方法。

相关:

  • System::Ioutils::TPath::GetHomePath
  • System::Ioutils::TPath
  • System::Ioutils
  • System::Sysutils::GetEnvironmentVariable
  • System::Sysutils::GetCurrentDir
  • System::Sysutils

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

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