Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/deno/cli/js/lib.deno.ns.d.ts>Deno.readDirSync

A modern runtime for JavaScript and TypeScript.
Go to Latest
function Deno.readDirSync
import { Deno } from "https://deno.land/x/deno@v1.0.0/cli/js/lib.deno.ns.d.ts";
const { readDirSync } = Deno;

Synchronously reads the directory given by path and returns an iterable of Deno.DirEntry.

  for (const dirEntry of Deno.readDirSync("/")) {
    console.log(dirEntry.name);
  }

Throws error if path is not a directory.

Requires allow-read permission.

Parameters

path: string

Returns

Iterable<DirEntry>