Node.js - Find home directory in platform agnostic way

后端 未结 5 999
我寻月下人不归
我寻月下人不归 2020-11-28 01:56

Process.platform returns \"win32\" for Windows. On Windows a user\'s home directory might be C:\\Users[USERNAME] or C:\\Documents and Settings[USERNAME] depending on which v

5条回答
  •  旧时难觅i
    2020-11-28 02:44

    os.homedir() was added by this PR and is part of the public 4.0.0 release of nodejs.


    Example usage:

    const os = require('os');
    
    console.log(os.homedir());
    

提交回复
热议问题