Node.js stats.isFile() 来自 fs.Stats 类的方法
stats.isFile() 方法是 fs.Stats 类的内置应用程序编程接口,用于检查 fs.Stats 对象是否描述文件。
句法:
stats.isFile();
参数:此方法不接受任何参数。
返回值:此方法返回一个布尔值,如果 fs.Stats 对象描述了一个文件,则返回 true,否则返回 false。
下面的示例说明了 Node.js 中 stats.isFile() 方法的使用:
示例 1:
// Node.js program to demonstrate the
// stats.isFile() method
// Accessing fs module
const fs = require('fs');
// Calling fs.Stats isFile() method
fs.stat('./filename.txt', (err, stats) => {
if (err) throw err;
// console.log(`stats: ${JSON.stringify(stats)}`);
console.log(stats.isFile());
});
fs.stat('./filename.txt', (err, stats) => {
if (err) throw err;
// console.log(`stats: ${JSON.stringify(stats)}`);
if (stats.isFile()) {
console.log("fs.Stats describes a file");
} else {
console.log("fs.Stats does not describe a file");
}
});
输出:
true
fs.Stats describes a file
示例 2:
// Node.js program to demonstrate the
// stats.isFile() method
// Accessing fs module
const fs = require('fs');
// Calling fs.Stats isFile() method
fs.stat('./', (err, stats) => {
if (err) throw err;
// console.log(`stats: ${JSON.stringify(stats)}`);
console.log(stats.isFile());
});
fs.stat('./', (err, stats) => {
if (err) throw err;
// console.log(`stats: ${JSON.stringify(stats)}`);
if (stats.isFile()) {
console.log("fs.Stats describes a file");
} else {
console.log("fs.Stats does not describe a file");
}
});
输出:
false
fs.Stats does not describe a file
注意:以上程序将通过使用node filename.js
命令编译运行,并正确使用 file_path。
参考: https://nodejs.org/api/fs.html#fs_stats_isfile