1

Is it possible to find standard directories like 'Program Files' or 'Windows' and their Linux and Mac equivalents in Node webkit?

Rewind
  • 2,554
  • 3
  • 30
  • 56

1 Answers1

0

Are you looking for that:

process.env[(process.platform == 'win32') ? 'USERPROFILE' : 'HOME']
mastilver
  • 665
  • 6
  • 18