Skip to main content

RmOptions

interface RmOptions

Properties Jump to heading

optional
Jump to headingforce: boolean | undefined

When true, exceptions will be ignored if path does not exist.

optional
Jump to headingmaxRetries: number | undefined

If an EBUSY, EMFILE, ENFILE, ENOTEMPTY, or EPERM error is encountered, Node.js will retry the operation with a linear backoff wait of retryDelay ms longer on each try. This option represents the number of retries. This option is ignored if the recursive option is not true.

optional
Jump to headingrecursive: boolean | undefined

If true, perform a recursive directory removal. In recursive mode, operations are retried on failure.

optional
Jump to headingretryDelay: number | undefined

The amount of time in milliseconds to wait between retries. This option is ignored if the recursive option is not true.

Back to top