CUserInfo.cpp 300 B

123456789101112131415
  1. #include "CUserInfo.h"
  2. #include <pwd.h>
  3. #include <stdlib.h>
  4. #include <unistd.h>
  5. String get_current_user_home_path()
  6. {
  7. if (auto* home_env = getenv("HOME"))
  8. return home_env;
  9. auto* pwd = getpwuid(getuid());
  10. String path = pwd ? pwd->pw_dir : "/";
  11. endpwent();
  12. return path;
  13. }