Java File Delete nio deleteTestFile(String extension)

Here you can find the source of deleteTestFile(String extension)

Description

delete Test File

License

Open Source License

Declaration

public static void deleteTestFile(String extension) throws IOException 

Method Source Code

//package com.java2s;
/*//from ww  w.  j a  va  2 s .  co m
 *     Copyright (C) 2015  higherfrequencytrading.com
 *
 *     This program 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.
 *
 *     This program 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 program.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.io.IOException;

import java.nio.file.Files;
import java.nio.file.Paths;

public class Main {
    public static void deleteTestFile(String extension) throws IOException {
        deleteFile(Paths.get("./test" + extension).toString());
    }

    public static void deleteFile(String path) {
        try {
            Files.deleteIfExists(Paths.get(path));
        } catch (Exception e) {
            System.err.println(String.format("Failed to delete file '%s'. Exception: %s", path, e));
        }
    }
}

Related

  1. deletePidFile()
  2. deleteQuietly(File file)
  3. deleteRecursive(File fileOrDirectory)
  4. deleteRecursively(File fileOrDir)
  5. deleteRecursively(File root)
  6. forceDelete(File file)
  7. forceDelete(File file)
  8. forceDelete(final File file)
  9. forceDeletion(File fileToDelete)