node-webkitprogram-files

Node Webkit - Finding standard directories


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


Solution

  • Are you looking for that:

    process.env[(process.platform == 'win32') ? 'USERPROFILE' : 'HOME']