Java File Path Delete deleteDir(File dir)

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

Description

Delete the specified directory.

License

Open Source License

Parameter

Parameter Description
dir an Object of File

Return

whether dir deleted successfully

Declaration

private static boolean deleteDir(File dir) 

Method Source Code

//package com.java2s;
/*//from  w  w  w . ja v  a2  s . c o m
    
Copyright (C) 2006-2013  Board of Regents of the University of Wisconsin System (Univ. of Wisconsin-Madison, Trace R&D Center).
    
This piece of the software package, developed by the Trace Center - University of Wisconsin is released to the public domain with only the following restrictions:
    
1) That the following acknowledgement be included in the source code and documentation for the program or package that use this code:
    
"Parts of this program were based on software developed by the Trace Center, University of Wisconsin-Madison under funding from NIDRR / US Dept of Education."
    
2) That this program not be modified unless it is plainly marked as modified from the original distributed by Trace.
    
NOTE: This license agreement does not cover third-party components bundled with this software, which have their own license agreement with them. A list of included third-party components with references to their license files is provided with this distribution. 
    
This software was developed under funding from NIDRR / US Dept of Education under grant # H133E030012.
    
THIS SOFTWARE IS EXPERIMENTAL/DEMONSTRATION IN NATURE. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
    
*/

import java.io.File;

public class Main {
    /**
     * Delete the specified directory.
     * 
     * @param dir an Object of File
     * @return whether dir deleted successfully 
     */
    private static boolean deleteDir(File dir) {

        if (dir == null)
            return true;

        if (!dir.exists())
            return true;

        File files[] = dir.listFiles();

        for (File file : files) {

            if (file.isDirectory()) {

                if (!deleteDir(file))
                    return false;

            } else {

                if (!deleteFile(file))
                    return false;
            }
        }

        return dir.delete();
    }

    /**
     * Delete the specified file.
     * 
     * @param file an Object of File
     * @return whether file deleted successfully 
     */
    private static boolean deleteFile(File file) {

        return file.delete();
    }
}

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)