Class DeleteFileOptions
Options for deleting files, such as recursive deletion and handling missing files.
public class DeleteFileOptions
- Inheritance
-
DeleteFileOptions
- Inherited Members
Properties
IgnoreIfNotExists
If true, ignore the operation if the file does not exist.
public bool? IgnoreIfNotExists { get; set; }
Property Value
- bool?
Recursive
If true, delete directories recursively.
public bool? Recursive { get; set; }
Property Value
- bool?