[prev in list] [next in list] [prev in thread] [next in thread] 

List:       jakarta-commons-dev
Subject:    [jira] [Created] (IO-413) deleteQuietly(File) should try to closeOnDelete too
From:       "BELUGA BEHR (JIRA)" <jira () apache ! org>
Date:       2013-11-30 5:50:35
Message-ID: JIRA.12681953.1385790611511.48708.1385790635042 () arcas
[Download RAW message or body]

BELUGA BEHR created IO-413:
------------------------------

             Summary: deleteQuietly(File) should try to closeOnDelete too
                 Key: IO-413
                 URL: https://issues.apache.org/jira/browse/IO-413
             Project: Commons IO
          Issue Type: Improvement
          Components: Utilities
            Reporter: BELUGA BEHR
            Priority: Minor


Something like...

{code}
    public static boolean deleteQuietly(final File file, final boolean deleteOnExit) {
        boolean fileDelete = false;
        if (file == null) {
            return false;
        }
        try {
            if (file.isDirectory()) {
                cleanDirectory(file);
            }
        } catch (final Exception ignored) {
        }

        try {
            fileDelete = file.delete();
        } catch (final Exception ignored) {
            return false;
        }

       if (deleteOnExit && !fileDeleted)
       {
           file.deleteOnExit();
       }
    }
{code}



--
This message was sent by Atlassian JIRA
(v6.1#6144)
[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic