Thu Oct 14 2021

Delete File

File Name: delete-file.java

import java.io.*;
import java.util.Scanner;

class deletefile {
	public static void main(String args[]) throws IOException {
		Scanner filename = new Scanner(System.in);
		System.out.println("Enter the file name to delete:");

		/* Deleting file */
		boolean success = (new File(filename.nextLine())).delete();
		if (success) 
			System.out.println("File has been deleted successfully!"); 
		else
			System.out.println("File not found or not able to deleted!");
	}
}




/* Output */
File has been deleted successfully!

/* ---------------------- */

File not found or not able to deleted!
Reference:

We use cookies to improve your experience on our site and to show you personalised advertising. Please read our cookie policy and privacy policy.