Recursively read a directory in Deno.
import { recursiveReaddir } from "https://deno.land/x/recursive_readdir/mod.ts";
const files = await recursiveReaddir("path/to/dir"); // string[]
Required permissions:
--allow-read
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"
);
Run tests:
deno test --allow-read
MIT Β© Denorg
A project by Denorg, the world's first Deno-focused community
organization and consulting company. Work with us β