Skip to main content
Module

x/netzo/deno.d.ts>Deno.fstat

SDK for Netzo, the open Web platform to unify IoT devices, applications and services.
Go to Latest
function Deno.fstat
import { Deno } from "https://deno.land/x/netzo@v0.1.10/deno.d.ts";
const { fstat } = Deno;

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);

Parameters

rid: number