- Java Tutorial
- Java Introduction
- Java Features
- Java Simple Program
- JVM, JDK and JRE
- Java Syntax
- Java Comments
- Java Keywords
- Java Variables
- Java Literals
- Java Separators
- Java Datatypes
- Java Operators
- Java Statements
- Java Strings
- Java Arrays
- Control Statement
- Java If
- Java If-else
- Java If-else-if
- Java Nested If
- Java Switch
- Iteration Statement
- Java For Loop
- Java For Each Loop
- Java While Loop
- Java Do While Loop
- Java Nested Loop
- Java Break/Continue
- Java Methods
- Java Methods
- Java Method Parameters
- Java Method Overloading
- Java Recursion
- Java OOPS
- Java OOPs
- Java Classes/Objects
- Java Inheritance
- Java Polymorphism
- Java Encapsulation
- Java Abstraction
- Java Modifiers
- Java Constructors
- Java Interface
- Java static keyword
- Java this keyword
- Java File Handling
- Java File
- Java Create File
- Java Read/Write File
- Java Delete File
- Java Program To
- Add Two Numbers
- Even or Odd Numbers
- Reverse a String
- Swap Two Numbers
- Prime Number
- Fibonacci Sequence
- Palindrome Strings
- Java Reference
- Java String Methods
- Java Math Methods
Java Delete File
To delete a file in Java, you can use the File class along with the delete() method. Here's how you can delete a file:
import java.io.File;
public class DeleteFileExample {
public static void main(String[] args) {
// Specify the file path
String filePath = "example.txt";
// Create a File object
File file = new File(filePath);
// Check if the file exists
if (file.exists()) {
// Delete the file
if (file.delete()) {
System.out.println("File deleted successfully!");
} else {
System.out.println("Failed to delete the file.");
}
} else {
System.out.println("File does not exist.");
}
}
}
In this example:
- We create a File object with the desired file path.
- We check if the file exists using the exists() method.
- If the file exists, we attempt to delete it using the delete() method.
- If the deletion is successful, we print a success message. Otherwise, we print a failure message.