recursive-readdir

📁 Recursively read directories in Deno

View the Project on GitHub denorg/recursive-readdir

📁 Recursive Readdir

Recursively read a directory in Deno.

Deno CI GitHub Contributors Deno Starter Made by Denorg TypeScript semantic-release

import { recursiveReaddir } from "https://deno.land/x/recursive_readdir/mod.ts";

const files = await recursiveReaddir("path/to/dir"); // string[]

Required permissions:

  1. --allow-read

💡 Recipes

Search for all markdown files in the content folder:

import { recursiveReaddir } from "https://deno.land/x/recursive_readdir/mod.ts";
import { join, extname } from "https://deno.land/std/path/mod.ts";

const markdownFiles = (await recursiveReaddir(join(".", "content"))).filter(
  (file: string) => extname(file) === ".md"
);

👩‍💻 Development

Run tests:

deno test --allow-read

📄 License

MIT © Denorg

A project by Denorg, the world's first Deno-focused community
organization and consulting company. Work with us →