Skip to main content
function Deno.statSync

Synchronously returns a Deno.FileInfo for the specified path. Will always follow symlinks.

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

Requires allow-read permission.

Parameters

path: string