判断目录是否存在

  1. //这是一个简单的应用
  2. var path = require('path');
  3. var fs = require("fs") ;
  4. global.l = console.log;
  5. //检查某个目录是否存在
  6. var stat = fs.statSync(path.join(__dirname,'content'));
  7. l(stat.isDirectory());//为true的话那么存在,如果为false不存在
  8. //检查某个文件是否存在
  9. try{
  10. fs.statSync(path.join(__dirname, 'content/a1.txt'));
  11. //如果可以执行到这里那么就表示存在了
  12. console.log('haode');
  13. }catch(e){
  14. //捕获异常
  15. }