File file = new File(path);
if (!file.delete())
{
throw new IOException(
"Failed to delete the file because: " +
getReasonForFileDeletionFailureInPlainEnglish(file));
}
getReasonForFileDeletionFailureInPlainEnglish(file)
すでにそこにある良い実装はありますか? さもなければ、自分で書くしかありません。