Synchronously removes files and directories (modeled on the standard POSIX rm utility). Returns undefined.
function
fs.rmSync
Referenced types
interface RmOptions
- maxRetries?: number
If an
EBUSY,EMFILE,ENFILE,ENOTEMPTY, orEPERMerror is encountered, Node.js will retry the operation with a linear backoff wait ofretryDelayms longer on each try. This option represents the number of retries. This option is ignored if therecursiveoption is nottrue. - recursive?: boolean
If
true, perform a recursive directory removal. In recursive mode, operations are retried on failure. - retryDelay?: number
The amount of time in milliseconds to wait between retries. This option is ignored if the
recursiveoption is nottrue.