类:fs.Dirent


¥Class: fs.Dirent

目录条目的表示,可以是目录中的文件或子目录,通过从 <fs.Dir> 读取返回。目录条目是文件名和文件类型对的组合。

¥A representation of a directory entry, which can be a file or a subdirectory within the directory, as returned by reading from an <fs.Dir>. The directory entry is a combination of the file name and file type pairs.

此外,当在 withFileTypes 选项设置为 true 的情况下调用 fs.readdir()fs.readdirSync() 时,生成的数组将填充 <fs.Dirent> 对象,而不是字符串或 <Buffer>

¥Additionally, when fs.readdir() or fs.readdirSync() is called with the withFileTypes option set to true, the resulting array is filled with <fs.Dirent> objects, rather than strings or <Buffer>.