promises.statfs - Node documentation
function promises.statfs

Usage in Deno

import { promises } from "node:fs";
const { statfs } = promises;
statfs(
path: PathLike,
opts?: StatFsOptions & { bigint?: false | undefined; },
): Promise<StatsFs>

Parameters

path: PathLike
optional
opts: StatFsOptions & { bigint?: false | undefined; }

Return Type

Promise<StatsFs>

Fulfills with the {fs.StatFs} object for the given path.

statfs(
path: PathLike,
opts: StatFsOptions & { bigint: true; },
): Promise<BigIntStatsFs>

Parameters

path: PathLike
opts: StatFsOptions & { bigint: true; }

Return Type

Promise<BigIntStatsFs>
statfs(
path: PathLike,
): Promise<StatsFs | BigIntStatsFs>

Parameters

path: PathLike
optional
opts: StatFsOptions

Return Type