Here you can find the source of deleteFileWithoutException(final String path)
public static void deleteFileWithoutException(final String path)
//package com.java2s; // Licensed under the MIT license. See License.txt in the repository root. import java.io.File; public class Main { public static void deleteFileWithoutException(final String path) { try {/*ww w. j av a2 s . c o m*/ new File(path).delete(); } catch (final Throwable t) { } } }