检查typescript

时间:2017-11-30 13:32:13

标签: typescript

我是打字稿的新手,需要检查机器上是否安装了某个系统,即windows。我想通过检查一些文件的存在来做到这一点,但我没有找到如何检查打字稿。 有人会知道怎么做吗?

4 个答案:

答案 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)

  1. 从npm安装文件存在(例如npm install file-exists --save)
  2. fileExists('您的文件名',(错误,存在)=> console.log(存在))
  3. 如果filepath存在且文件为
  4. ,则返回true