Java File Path Delete deleteDir(File dir)

Here you can find the source of deleteDir(File dir)

Description

delete Dir

License

Open Source License

Declaration

public static boolean deleteDir(File dir) 

Method Source Code


//package com.java2s;
/*/*from   w w w  . j a va  2  s  .c om*/
Copyright 2009 Semantic Discovery, Inc. (www.semanticdiscovery.com)
    
This file is part of the Semantic Discovery Toolkit.
    
The Semantic Discovery Toolkit is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
    
The Semantic Discovery Toolkit is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Lesser General Public License for more details.
    
You should have received a copy of the GNU Lesser General Public License
along with The Semantic Discovery Toolkit.  If not, see <http://www.gnu.org/licenses/>.
*/

import java.io.*;

public class Main {
    public static boolean deleteDir(File dir) {
        return deleteDir(dir, true, null);
    }

    public static boolean deleteDir(File dir, boolean includeThisDir, FilenameFilter exceptions) {

        boolean success = true;

        if (includeThisDir && exceptions != null && exceptions.accept(dir, dir.getName()))
            return success;

        if (dir.exists()) {
            if (dir.isDirectory()) {
                final File[] files = dir.listFiles();
                if (files != null) {
                    for (File file : files) {
                        success &= deleteDir(file, true, exceptions);
                    }
                }

                if (includeThisDir) {
                    success &= dir.delete();
                }
            } else {
                success = dir.delete();
            }
        }
        return success;
    }
}

Related

  1. deleteDir(File dir)
  2. deleteDir(File dir)
  3. deleteDir(File dir)
  4. deleteDir(File dir)
  5. deleteDir(File dir)
  6. deleteDir(File dir)
  7. deleteDir(File dir)
  8. deleteDir(File dir)
  9. deleteDir(File dir)