Here you can find the source of deleteIfExists(File file)
public static boolean deleteIfExists(File file)
//package com.java2s; //License from project: Open Source License import java.io.*; public class Main { public static boolean deleteIfExists(File file) { if (file == null) { return true; }/*from w w w . j a v a 2 s .co m*/ return file.delete(); } }