Apache Tomcat 7.0.42

org.apache.tomcat.util.http.fileupload
Class FileDeleteStrategy

java.lang.Object
  extended by org.apache.tomcat.util.http.fileupload.FileDeleteStrategy

public class FileDeleteStrategy
extends Object

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
Version:
$Id: FileDeleteStrategy.java 1461342 2013-03-26 22:15:52Z markt $

Field Summary
static FileDeleteStrategy NORMAL
          The singleton instance for normal file deletion, which does not permit the deletion of directories that are not empty.
 
Constructor Summary
protected FileDeleteStrategy(String name)
          Restricted constructor.
 
Method Summary
 boolean deleteQuietly(File fileToDelete)
          Deletes the file object, which may be a file or a directory.
protected  boolean doDelete(File fileToDelete)
          Actually deletes the file object, which may be a file or a directory.
 String toString()
          Gets a string describing the delete strategy.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

NORMAL

public static final FileDeleteStrategy NORMAL
The singleton instance for normal file deletion, which does not permit the deletion of directories that are not empty.

Constructor Detail

FileDeleteStrategy

protected FileDeleteStrategy(String name)
Restricted constructor.

Parameters:
name - the name by which the strategy is known
Method Detail

deleteQuietly

public boolean deleteQuietly(File fileToDelete)
Deletes the file object, which may be a file or a directory. All IOExceptions 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

doDelete

protected boolean doDelete(File fileToDelete)
                    throws IOException
Actually deletes the file object, which may be a file or a directory.

This method is designed for subclasses to override. The implementation may return either false or an IOException when deletion fails. The deleteQuietly(File) method will handle either response appropriately. A check has been made to ensure that the file will exist.

This implementation uses File.delete().

Parameters:
fileToDelete - the file to delete, exists, not null
Returns:
true if the file was deleteds
Throws:
NullPointerException - if the file is null
IOException - if an error occurs during file deletion

toString

public String toString()
Gets a string describing the delete strategy.

Overrides:
toString in class Object
Returns:
a string describing the delete strategy

Apache Tomcat 7.0.42

Copyright © 2000-2013 Apache Software Foundation. All Rights Reserved.