Deleting multiple directories with Nodejs/Javascript
Hello! I had to delete all directories that were in a directory called "files", just thought I'd share the solution. ๐
const { rmSync, promises: { readdir } } = require('fs');
(async () => {
try {
const fileNames = await readdir('./files');
...
ethan91.hashnode.dev1 min read