Java File IO
- 30 January
How to delete non empty directory in java
In this post, we will see how to delete Directory/Folder which is non empty. You can use java.io.File ‘s delete empy folder but you can not delete it if it is non empty. There are multiple ways to do it. Using java recursion Using Apache common IO Using java recursion: It is very straight forward to […]
- 30 January
How to download file from URL in java
In this post, we will see how to download file from URL in java. It can be used when you want to automatically download any file from URL using java. There are many ways to do it and some of them are : Using Java input output stream Using apache common IO Using NIO Java […]
- 30 January
How to check if a file exists in Java
It is very easy to check if file exists or not in your file system. You can use java.io.File’s exists() method to check if file exists or not. Java program : [crayon-6729e59361f2f134777437/] When you run above program, you will get following output: [crayon-6729e59361f32657855306/]
- 29 January
How to get size of file in java
In this post, we will see how to get size of file in java. We can directly use java.io.File ‘s length method to get its size in bytes. We can convert it to KB and MB accordingly. [crayon-6729e59363c1c438964019/] When you run above program, you will get following output: [crayon-6729e59363c26159069435/]
- 29 January
Java get file extension
In this post, we will see how to get extension of file in java. As java.io.File does not provide any direct method for getting extension of file. This is used when you want to process file differently on the basis of its extension. I have worked on a project where I required this utility method. […]