Interface DeleteFileOptions

Delete file options

interface DeleteFileOptions {
    ignoreIfNotExists?: boolean;
    recursive?: boolean;
}

Properties

ignoreIfNotExists?: boolean

Ignore the operation if the file doesn't exist.

recursive?: boolean

Delete the content recursively if a folder is denoted.