码迷,mamicode.com
首页 > 其他好文 > 详细

node判断文件目录是否存在

时间:2016-09-01 02:00:00      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:

‘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判断文件目录是否存在

标签:

原文地址:http://www.cnblogs.com/coding4/p/5828030.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!