RmOptions

sealed external interface RmOptions(source)

Properties

Link copied to clipboard
abstract var force: Boolean?

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

Link copied to clipboard
abstract var maxRetries: Double?

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.

Link copied to clipboard
abstract var recursive: Boolean?

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

Link copied to clipboard
abstract var retryDelay: Double?

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