vscode/src/paths.js

29 lines
1,016 B
JavaScript
Raw Normal View History

2016-05-04 10:43:55 +02:00
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
var path = require('path');
var os = require('os');
function getAppDataPath(platform) {
switch (platform) {
case 'win32': return process.env['APPDATA'];
case 'darwin': return path.join(os.homedir(), 'Library', 'Application Support');
case 'linux': return process.env['XDG_CONFIG_HOME'] || path.join(os.homedir(), '.config');
default: throw new Error('Platform not supported');
}
}
function getUserDataPath(platform, appName, userDataDir) {
2016-05-04 10:43:55 +02:00
if (userDataDir) {
return userDataDir;
}
var appData = getAppDataPath(platform);
2016-05-04 10:43:55 +02:00
return path.join(appData, appName);
}
exports.getAppDataPath = getAppDataPath;
exports.getUserDataPath = getUserDataPath;