fs.lstat(path[, options], callback)


获取路径引用的符号链接的 <fs.Stats>。 回调有两个参数 (err, stats),其中 stats<fs.Stats> 对象。 lstat()stat() 相同,除了如果 path 是符号链接,则被统计的是链接本身,而不是它引用的文件。

有关更多详细信息,请参阅 POSIX lstat(2) 文档。

Retrieves the <fs.Stats> for the symbolic link referred to by the path. The callback gets two arguments (err, stats) where stats is a <fs.Stats> object. lstat() is identical to stat(), except that if path is a symbolic link, then the link itself is stat-ed, not the file that it refers to.

See the POSIX lstat(2) documentation for more details.