方法說明:
同步版的 fs.exists() 。
文法:
fs.existsSync(path)
由於方法屬於fs模組,使用前需要引入fs模組(var fs= require(“fs”) )
接收參數:
path 欲偵測的檔案路徑。
原始碼:
fs.existsSync = function(path) {
try {
nullCheck(path);
binding.stat(pathModule._makeLong(path));
return true;
} catch (e) {
return false;
}
};