rmdir
How does rmdir
work?
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 ENOTDIR
error on POSIX.
To get a behavior similar to the rm -rf
Unix command, use fsPromises.rm()
with options { recursive: true, force: true }
.
Additional details
- since universal-fs v1.0.0 | Node.js v10.0.0
- return Fulfills with
undefined
void
upon success.