node中的‘fs’模块是文件模块,
- 检测文件是否存在
fs.exists('readme.md',function(exists){
console.log(exists);}
)
注意:path路径前面不需要加'/',
node中的‘fs’模块是文件模块,
fs.exists('readme.md',function(exists){
console.log(exists);}
)
注意:path路径前面不需要加'/',