node.js中的fs.exists方法使用说明
方法说明:
测试某个路径下的文件是否存在。
回调函数包含一个参数exists,true则文件存在,否则是false。
语法:
fs.exists(path,callback)
由于该方法属于fs模块,使用前需要引入fs模块(varfs=require(“fs”))
接收参数:
path欲检测的文件路径
callback回调
例子:
fs.exists('/etc/passwd',function(exists){
util.debug(exists?"it'sthere":"nopasswd!");
});
源码:
fs.exists=function(path,callback){
if(!nullCheck(path,cb))return;
binding.stat(pathModule._makeLong(path),cb);
functioncb(err,stats){
if(callback)callback(err?false:true);
}
};