Skip to main content
Module

x/deno/js/stat.ts>statSync

A modern runtime for JavaScript and TypeScript.
Go to Latest
function statSync
import { statSync } from "https://deno.land/x/deno@v0.17.0/js/stat.ts";

Queries the file system for information on the path provided synchronously. statSync Will always follow symlinks.

  const fileInfo = Deno.statSync("hello.txt");
  assert(fileInfo.isFile());

Parameters

filename: string