In this example we will show the methods to delete a file in Java.
Source Code
package com.beginner.examples;
import java.io.*;
public class FileOperator9Example {
public static void main(String[] args )
{
try
{
File path = new File("example.txt");
if (!path.exists())
{
path.createNewFile();
}
if(path.delete())
{
System.out.println("Deleted successfully!");
}
else
{
System.out.println("Delete failed.");
}
}
catch (IOException e)
{
e.printStackTrace();
}
}
}
Output:
Deleted successfully!