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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。