fs.Dirent 类
目录条目的表示,可以是目录中的文件或子目录,通过从 <fs.Dir> 读取返回。 目录条目是文件名和文件类型对的组合。
此外,当 fs.readdir()
或 fs.readdirSync()
在 withFileTypes
选项设置为 true
的情况下调用时,结果数组将填充 <fs.Dirent> 对象,而不是字符串或 <Buffer>。
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.
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>s.