Java Delete Tree deltree(File root)

Here you can find the source of deltree(File root)

Description

Purges the passed file.

License

Open Source License

Parameter

Parameter Description
root The file to purge

Declaration

public static void deltree(File root) 

Method Source Code

//package com.java2s;
/**/*from   w w  w. j a  v a2 s .  c o  m*/
 * Helios, OpenSource Monitoring
 * Brought to you by the Helios Development Group
 *
 * Copyright 2007, Helios Development Group and individual contributors
 * as indicated by the @author tags. See the copyright.txt file in the
 * distribution for a full listing of individual contributors.
 *
 * This 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 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software 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 this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org. 
 *
 */

import java.io.File;

public class Main {
    /**
     * Purges the passed file. If it is a regular file, it is simply deleted. 
     * If it is a directory, it is recursively deleted.
     * @param root The file to purge
     */
    public static void deltree(File root) {
        if (root == null || !root.exists())
            return;
        if (root.isDirectory()) {
            for (File subRoot : root.listFiles()) {
                if (subRoot.isFile()) {
                    subRoot.delete();
                } else {
                    deltree(subRoot);
                }
            }
            root.delete();
        } else {
            root.delete();
        }
    }
}

Related

  1. delTree(File file)
  2. delTree(File file)
  3. delTree(File file)
  4. delTree(File file)
  5. delTree(File root)
  6. deltree(final String directory)
  7. deltree(String dir)
  8. deltree(String dir)
  9. deltree(String directory)