当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js fs.mkdirSync()用法及代码示例


fs.mkdirSync() 方法是 fs 模块的内置应用程序编程接口,它提供了一个 API,用于以与标准 POSIX 函数密切建模的方式与文件系统交互。 fs.mkdirSync() 方法用于同步创建目录。

用法:

fs.mkdirSync( path, options )

参数:此方法接受上面提到并在下面描述的两个参数:

  • path:要创建目录的路径。它可以是字符串、缓冲区等。
  • options:它是一个可选参数,用于确定如何递归地创建目录等。

返回值:它返回未定义。

下面的例子说明了在 Node.js 中 fs.mkdirSync() 方法的使用:



范例1:


// Node.js program to demonstrate the
// fs.mkdirSync() method
   
const fs = require("fs");
   
const path = require("path");
   
// Using fs.exists() method to 
// check that the directory exists or not
console.log("Checking for directory " 
        + path.join(__dirname, "Geeks"));
fs.exists(path.join(__dirname, "Geeks"), exists => {
  console.log(exists ? "The directory already exists" 
                    :"Not found!");
});
   
// Using fs.mkdirSync() method
// to create the directory
fs.mkdirSync(path.join(__dirname, "Geeks"));
   
// Using fs.exists() method to
// check that the directory exists or not
fs.exists(path.join(__dirname, "Geeks"), exists => {
  console.log(exists ? "The directory already exists" 
                    :"Not found!");
});

输出:

Checking for directory c:\Users\Suraj\node\Geeks
Not found!
The directory already exists

范例2:


// Node.js program to demonstrate the
// fs.mkdirSync() method
  
const fs = require("fs");
  
const path = require("path");
  
// Using fs.exists() method to
// check that the directory exists or not
console.log("Checking for directory" 
        + path.join(__dirname, "Tisu"));
fs.exists(path.join(__dirname, "Tisu"), exists => {
  console.log(exists ? "The directory already exists"
                         :"Not found!");
});
  
// Using fs.mkdirSync() method
// to create the directory recursively
fs.mkdirSync(path.join(__dirname, "Tisu"), true);
  
// Using fs.exists() method to
// check that the directory exists or not
fs.exists(path.join(__dirname, "Tisu"), exists => {
  console.log(exists ? "The directory already exists" 
                    :"Not found!");
});

输出:

Checking for directory c:\Users\Suraj\node\Tisu
Not found!
The directory already exists

注意:上面的程序将通过使用node index.js命令。

参考:https://nodejs.org/api/fs.html#fs_fs_mkdirsync_path_options




相关用法


注:本文由纯净天空筛选整理自shuraj1825大神的英文原创作品 Node.js | fs.mkdirSync() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。