fs.rmdiroptions
@listenai/lisa_core / Exports / fs / RmDirOptions
Interface: RmDirOptions
fs.RmDirOptions
#
Table of contents#
Properties#
Properties#
maxRetries• Optional
maxRetries: number
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
.
default
0
#
Defined innode_modules/@types/node/fs.d.ts:883
#
recursive• Optional
recursive: boolean
deprecated
since v14.14.0 In future versions of Node.js,
fs.rmdir(path, { recursive: true })
will throw on nonexistent
paths, or when given a file as a target.
Use fs.rm(path, { recursive: true, force: true })
instead.
If true
, perform a recursive directory removal. In
recursive mode, errors are not reported if path
does not exist, and
operations are retried on failure.
default
false
#
Defined innode_modules/@types/node/fs.d.ts:895
#
retryDelay• Optional
retryDelay: number
The amount of time in milliseconds to wait between retries.
This option is ignored if the recursive
option is not true
.
default
100
#
Defined innode_modules/@types/node/fs.d.ts:901