Node fs.lstat function | API Reference | Bun
BuildDocsReferenceGuidesBlogDiscord/
node:fs/
lstatNlstat
Search the reference...
/
BuildDocsReferenceGuidesBlogDiscord/
node:fs/
lstatNlstat
namespace
fs.lstatfunction
lstat(path:
PathLike,callback: (err: null | ErrnoException, stats:
Stats) => void): void;
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.
function
lstat(path:
PathLike,options: undefined |
StatOptions & { bigint: false },callback: (err: null | ErrnoException, stats:
Stats) => void): void;
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.
function
lstat(path:
PathLike,options:
StatOptions & { bigint: true },callback: (err: null | ErrnoException, stats:
BigIntStats) => void): void;
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.
function
lstat(path:
PathLike,options: undefined |
StatOptions,callback: (err: null | ErrnoException, stats:
Stats |
BigIntStats) => void): void;
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.
namespace
lstatResources
ReferenceDocsGuidesDiscordMerch StoreGitHubBlog Toolkit
RuntimePackage managerTest runnerBundlerPackage runnerProject
Bun 1.0Bun 1.1Bun 1.2Bun 1.3RoadmapContributingLicenseBaked with ❤️ in San Francisco
We're hiring →