我是打字稿的新手,需要检查机器上是否安装了某个系统,即windows。我想通过检查一些文件的存在来做到这一点,但我没有找到如何检查打字稿。 有人会知道怎么做吗?
答案 0 :(得分:3)
我发现这种方法更加简单:
import fs from 'fs';
if (fs.existsSync(path)) {
// File exists in path
} else {
// File doesn't exist in path
}
答案 1 :(得分:2)
这个对我有用
let file = 'ObjectCreatorBundles';
fs.exists(file, (exist) => {
if (exist) {
console.log("I got your file")
} else {
console.log("the file doesn't exists");
}
});
答案 2 :(得分:1)
fs.stat(path, (exists) => {
if (exists == null) {
return true;
} else if (exists.code === 'ENOENT') {
return false;
}
});
答案 3 :(得分:0)