import { Deno } from "https://deno.land/x/ayonli_jsext@v0.9.72/lib.deno.d.ts";
const { FsFile } = Deno;
Resolves to a Deno.FileInfo
for the file.
import { assert } from "https://deno.land/std/assert/mod.ts";
using file = await Deno.open("hello.txt");
const fileInfo = await file.stat();
assert(fileInfo.isFile);