Java tutorial
//package com.java2s; import java.io.File; import java.io.IOException; public class Main { public static void deleteFileOrThrow(File paramFile) throws IOException { if ((paramFile.exists()) && (!paramFile.delete())) throw new IOException("failed to delete file: " + paramFile); } }