#学习使用node文件模块 ##判断文件是否存在
var fs = require('fs');
fs.stat('/xxx', function(err, stat){
if(stat&&stat.isFile()) {
console.log('文件存在');
} else {
console.log('文件不存在或不是标准文件');
}
})
#学习使用node文件模块 ##判断文件是否存在
var fs = require('fs');
fs.stat('/xxx', function(err, stat){
if(stat&&stat.isFile()) {
console.log('文件存在');
} else {
console.log('文件不存在或不是标准文件');
}
})
npm i vilian_test_firststep_20180308_mygodisthenamealreadyexistence
0
1.0.1
ISC
1.15 kB
3