node判断文件目录是否存在
Posted 飘然离去
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了node判断文件目录是否存在相关的知识,希望对你有一定的参考价值。
‘use strict‘; //这是一个简单的应用 var path = require(‘path‘); var fs = require("fs") ; global.l = console.log; //检查某个目录是否存在 var stat = fs.statSync(path.join(__dirname,‘content‘)); l(stat.isDirectory());//为true的话那么存在,如果为false不存在 //检查某个文件是否存在 try{ fs.statSync(path.join(__dirname, ‘content/a1.txt‘)); //如果可以执行到这里那么就表示存在了 console.log(‘haode‘); }catch(e){ //捕获异常 }
以上是关于node判断文件目录是否存在的主要内容,如果未能解决你的问题,请参考以下文章