
- Java Programming Examples
- Example - Home
- Example - Environment
- Example - Strings
- Example - Arrays
- Example - Date & Time
- Example - Methods
- Example - Files
- Example - Directories
- Example - Exceptions
- Example - Data Structure
- Example - Collections
- Example - Networking
- Example - Threading
- Example - Applets
- Example - Simple GUI
- Example - JDBC
- Example - Regular Exp
- Example - Apache PDF Box
- Example - Apache POI PPT
- Example - Apache POI Excel
- Example - Apache POI Word
- Example - OpenCV
- Example - Apache Tika
- Example - iText
- Java Tutorial
- Java - Tutorial
- Java Useful Resources
- Java - Quick Guide
- Java - Useful Resources
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to get the fact that a directory is empty or not in Java
Problem Description
How to get the fact that a directory is empty or not?
Solution
Following example gets the size of a directory by using file.isDirectory(),file.list() and file.getPath() methods of File class.
import java.io.File; public class Main { public static void main(String[] args) { File file = new File("/data"); if (file.isDirectory()) { String[] files = file.list(); if (files.length > 0) { System.out.println("The " + file.getPath() + " is not empty!"); } } } }
Result
The above code sample will produce the following result.
The D://Java/file.txt is not empty!
The following is another sample example of that a directory is empty or not in java
import java.io.File; public class CheckEmptyDirectoryExample { public static void main(String[] args) { File file = new File("C:\\New folder"); if(file.isDirectory()){ if(file.list().length > 0) { System.out.println("Directory is not empty!"); } else { System.out.println("Directory is empty!"); } } else { System.out.println("This is not a directory"); } } }
The above code sample will produce the following result.
Directory is empty!
java_directories.htm
Advertisements