Node.js检查文件是否存在

"use strict";

const fs = require("fs");

//fs.mkdir("test", function (err) {
//    if(err) throw err;
//    console.log("建立成功");
//})

//fs.rmdir("test", err => {
//    if(err) throw err;
//    console.log("删除成功");
//})


//fs.exists('test', (exists) => {
//    if(exists) {
//        console.log("存在");
//    }else{
//        console.log("不存在,建立文件夹");
//    }
//});


//使用access检测文件夹是否存在
//6.xxx使用fs.constants.F_OK
//4.xxx使用fs.F_OK
fs.access('test', fs.F_OK, (err) => {
    if(err) {
        console.log("文件夹不存在");
        return;
    }
    console.log("文件夹存在");
});
4.xxx使用fs.F_OK
6.xxx使用fs.constants.F_OK