Package org.apache.commons.io
Class FileDeleteStrategy
java.lang.Object
org.apache.commons.io.FileDeleteStrategy
Strategy for deleting files.
There is more than one way to delete a file. You may want to limit access to certain directories, to only delete directories if they are empty, or maybe to force deletion.
This class captures the strategy to use and is designed for user subclassing.
- Since:
- 1.3
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final FileDeleteStrategyThe singleton instance for forced file deletion, which always deletes, even if the file represents a non-empty directory.static final FileDeleteStrategyThe singleton instance for normal file deletion, which does not permit the deletion of directories that are not empty. -
Method Summary
-
Field Details
-
NORMAL
The singleton instance for normal file deletion, which does not permit the deletion of directories that are not empty. -
FORCE
The singleton instance for forced file deletion, which always deletes, even if the file represents a non-empty directory.
-
-
Method Details
-
delete
Deletes the file object, which may be a file or a directory. If the file does not exist, the method just returns.Subclass writers should override
doDelete(File), not this method.- Parameters:
fileToDelete- the file to delete, not null- Throws:
NullPointerException- if the file is nullIOException- if an error occurs during file deletion
-
deleteQuietly
Deletes the file object, which may be a file or a directory. AllIOExceptions are caught and false returned instead. If the file does not exist or is null, true is returned.Subclass writers should override
doDelete(File), not this method.- Parameters:
fileToDelete- the file to delete, null returns true- Returns:
- true if the file was deleted, or there was no such file
-
toString
Gets a string describing the delete strategy.
-