interface RmDirOptions
Properties Jump to heading
optional
Jump to headingmaxRetries: number | undefinedIf 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.
deprecated
optional
Jump to headingrecursive: boolean | undefinedoptional
Jump to headingretryDelay: number | undefinedThe amount of time in milliseconds to wait between retries.
This option is ignored if the recursive option is not true.