/* * Copyright 2015 Cel Skeggs. * * This file is part of the CCRE, the Common Chicken Runtime Engine. * * The CCRE 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 CCRE 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 CCRE. If not, see <http://www.gnu.org/licenses/>. */ package ccre.deployment; import java.io.File; import java.io.IOException; import ccre.concurrency.ReporterThread; class DirectoryDeleterThread extends ReporterThread { private final File directory; public DirectoryDeleterThread(File directory) { super("DirectoryDeleter-" + directory); this.directory = directory; } @Override protected void threadBody() throws Throwable { deleteRecursive(directory); } private static void deleteRecursive(File dir) throws IOException { if (dir.exists()) { if (dir.isDirectory()) { // Note: we don't need to worry about this being NULL due to // being invalid because that would have caused // dir.isDirectory() to return false. for (File f : dir.listFiles()) { deleteRecursive(f); } } if (!dir.delete()) { throw new IOException("Could not delete directory: " + dir); } } } }