const tmpDir = '/tmp';
const subdir = '/com.domain.app';
!fs.existsSync(tmp + subdir) ? fs.mkdirSync(tmp + subdir) : null;
// This method is *CORRECT*:
const path = require('path');
fs.mkdtemp(tmpDir + path.sep + subdir + path.sep, function(err, folder){
if (err) throw err;
console.log(folder);
});
我的问题与path.sep
和临时目录有关,我希望代码与平台无关,并且能够在多个平台上运行。
path.sep
的价值是什么。/tmp
吗?由于
答案 0 :(得分:1)
使用os.tmpDir
和path.join
函数来实现跨平台代码。
var tmp = require('os').tmpDir();
var dest = path.join(tmp, "com.domain.app");
!fs.existsSync(dest) ? fs.mkdirSync(dest) : null;