fs.lstat(path[, options], callback)
path<string> | <Buffer> | <URL>options<Object>callback<Function>err<Error>stats<fs.Stats>
异步的 lstat(2)。
回调有两个参数 (err, stats),其中 stats 是 fs.Stats 对象。
lstat() 与 stat() 相同,除了如果 path 是符号链接,则被统计的是链接本身,而不是它引用的文件。
path<string> | <Buffer> | <URL>options<Object>callback<Function>err<Error>stats<fs.Stats>
Asynchronous lstat(2). 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.