deno / 1.23.2 / ~ / deno.fstat.html /

Deno.fstat

Returns a Deno.FileInfo for the given file stream.

import { assert } from "https://deno.land/std/testing/asserts.ts";
const file = await Deno.open("file.txt", { read: true });
const fileInfo = await Deno.fstat(file.rid);
assert(fileInfo.isFile);
function fstat( rid: number) : Promise<FileInfo>;
fstat( rid: number) : Promise<FileInfo>

Parameters

rid: number

Return Type

Promise<FileInfo>

© 2018–2022 the Deno authors
https://doc.deno.land/deno/stable/~/Deno.fstat