How to delete a file or directory in Java

3

In this simple and quick article, you’ll learn how to delete a file or directory in Java. The article demonstrates two ways of deleting a File - Delete file using Files.delete(Path) method of Java NIO Delete file using the delete() method of java.io.File class Delete File using Java NIO’s Files.delete() (Recommended) - JDK 7+ import java.io.IOException; import java.nio.file.*; public class DeleteFileExample { public static void main(String[] args) throws IOException { // File...

Read this post on callicoder.com


Rajeev Kumar Singh

blogs from Bangalore