fs.opendir()方法用于异步打开文件系统中的目录。它创建一个用于表示目录的fs.Dir对象。该对象包含各种可用于访问目录的方法。
用法:
fs.opendir( path[, options], callback )
参数:此方法接受上述和以下所述的三个参数:
- path:它是一个字符串,缓冲区或URL,表示必须打开的目录的路径。
- options:它是一个String或对象,可用于指定将影响输出的可选参数。它具有两个可选参数:
- encoding:它是一个字符串,它指定打开目录时路径的编码以及后续的读取操作。默认值为“ utf8”。
- bufferSize:它是一个数字,指定读取目录时在内部缓冲的目录条目的数量。更高的值意味着更高的性能,但会导致更高的内存使用率。默认值为“ 32”。
- callback:该方法执行时将调用该函数。
- err:如果方法失败,将引发错误。
- dir:这是由表示目录的方法创建的fs.Dir对象。
以下示例说明了Node.js中的fs.opendir()方法:
范例1:
// Node.js program to demonstrate the
// fs.opendir() method
// Import the filesystem module
const fs = require('fs');
// Open the directory
console.log("Opening the directory");
fs.opendir(
// Path of the directory
"example_dir",
// Options for modifying the operation
{ encoding:"utf8", bufferSize:64 },
// Callback with the error and returned
// directory
(err, dir) => {
if (err) console.log("Error:", err);
else {
// Print the pathname of the directory
console.log("Path of the directory:", dir.path);
// Close the directory
console.log("Closing the directory");
dir.closeSync();
}
}
);
输出:
Opening the directory Path of the directory:example_dir Closing the directory
范例2:
// Node.js program to demonstrate the
// fs.opendir() method
// Import the filesystem module
const fs = require('fs');
// Function to get current filenames
// in directory
filenames = fs.readdirSync("example_dir");
console.log("\nCurrent filenames in directory:");
filenames.forEach((file) => {
console.log(file);
});
// Open the directory
fs.opendir("example_dir", (err, dir) => {
if (err) console.log("Error:", err);
else {
// Print the pathname of the directory
console.log("\nPath of the directory:", dir.path);
// Read the files in the directory
// as fs.Dirent objects
console.log("First Dirent:", dir.readSync());
console.log("Next Dirent:", dir.readSync());
console.log("Next Dirent:", dir.readSync());
}
});
输出:
Current filenames in directory: file_a.txt file_b.txt Path of the directory:example_dir First Dirent:Dirent { name:'file_a.txt', [Symbol(type)]:1 } Next Dirent:Dirent { name:'file_b.txt', [Symbol(type)]:1 } Next Dirent:null
参考: https://nodejs.org/api/fs.html#fs_fs_opendir_path_options_callback
相关用法
- Node.js console.timeLog()用法及代码示例
- Node.js GM blur()用法及代码示例
- Node.js GM orderedDither()用法及代码示例
- Node.js GM sharpen()用法及代码示例
- Node.js GM charcoal()用法及代码示例
- Node.js GM paint()用法及代码示例
- Node.js GM flip()用法及代码示例
- Node.js GM solarize()用法及代码示例
- Node.js GM motionBlur()用法及代码示例
- Node.js GM flop()用法及代码示例
- Node.js GM modulate()用法及代码示例
- Node.js GM minify()用法及代码示例
- Node.js GM spread()用法及代码示例
- Node.js GM magnify()用法及代码示例
注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 Node.js | fs.opendir() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。