function promises.rmdir
Usage in Deno
import { promises } from "node:fs"; const { rmdir } = promises;
rmdir(path: PathLike,options?: RmDirOptions,): Promise<void>
Removes the directory identified by path.
Using fsPromises.rmdir() on a file (not a directory) results in the
promise being rejected with an ENOENT error on Windows and an ENOTDIRerror on POSIX.
To get a behavior similar to the rm -rf Unix command, use fsPromises.rm() with options { recursive: true, force: true }.
path: PathLike
optional
options: RmDirOptions
Promise<void>
Fulfills with undefined upon success.