How to create a folder in the home directory?

…衆ロ難τιáo~ 提交于 2020-01-21 04:36:12

问题


I want to create a directory path = "$HOME/somedir".

I've tried using boost::filesystem::create_directory(path), but it fails - apparently the function doesn't expand system variables.

How can I do it the simplest way?

(note: in my case the string path is constant and I don't know for sure if it contains a variable)

edit: I'm working on Linux (although I'm planning to port my app to Windows in the near future).


回答1:


Use getenv to get environment variables, including HOME. If you don't know for sure if they might be present, you'll have to parse the string looking for them.

You could also use the system shell and echo to let the shell do this for you.

Getenv is portable (from standard C), but using the shell to do this portably will be harder between *nix and Windows. Convention for environment variables differs between *nix and Windows too, but presumably the string is a configuration parameter that can be modified for the given platform.

If you only need to support expanding home directories rather than arbitrary environment variables, you can use the ~ convention and then ~/somedir for your configuration strings:

std::string expand_user(std::string path) {
  if (not path.empty() and path[0] == '~') {
    assert(path.size() == 1 or path[1] == '/');  // or other error handling
    char const* home = getenv("HOME");
    if (home or ((home = getenv("USERPROFILE")))) {
      path.replace(0, 1, home);
    }
    else {
      char const *hdrive = getenv("HOMEDRIVE"),
        *hpath = getenv("HOMEPATH");
      assert(hdrive);  // or other error handling
      assert(hpath);
      path.replace(0, 1, std::string(hdrive) + hpath);
    }
  }
  return path;
}

This behavior is copied from Python's os.path.expanduser, except it only handles the current user. The attempt at being platform agnostic could be improved by checking the target platform rather than blindly trying different environment variables, even though USERPROFILE, HOMEDRIVE, and HOMEPATH are unlikely to be set on Linux.




回答2:


Off the top of my head,

namespace fs = boost::filesystem;
fs::create_directory(fs::path(getenv("HOME")));


来源:https://stackoverflow.com/questions/4891006/how-to-create-a-folder-in-the-home-directory

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!