Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 version of Windows is being used. On Unix this isn't an issue.

share|improve this question
Does Mac OS X retain the Unix method or does it require something different too? – hippietrail Dec 19 '12 at 11:47

2 Answers

up vote 30 down vote accepted

Why not use the USERPROFILE environment variable on win32?

function getUserHome() {
  return process.env[(process.platform == 'win32') ? 'USERPROFILE' : 'HOME'];
}
share|improve this answer
This one works. – Matthew Jan 31 '12 at 17:14

Well, it would be more accurate to rely on the feature and not a variable value. Especially as there are 2 possible variables for Windows.

function getUserHome() {
  return process.env.HOME || process.env.HOMEPATH || process.env.USERPROFILE;
}
share|improve this answer
On my Windows 7 machine, HOMEPATH and USERPROFILE return the same thing (C:\\Users\\Username). HOME returns undefined. On my Mac HOME returns /Users/Username and HOMEPATH and USERPROFILE return undefined. – Ben Clayton Apr 24 at 11:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.