When true
, exceptions will be ignored if path
does not exist.
interface
fs.RmOptions
interface RmOptions
- maxRetries?: number
If an
EBUSY
,EMFILE
,ENFILE
,ENOTEMPTY
, orEPERM
error is encountered, Node.js will retry the operation with a linear backoff wait ofretryDelay
ms longer on each try. This option represents the number of retries. This option is ignored if therecursive
option 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
recursive
option is nottrue
.