How to check if directory is empty in Java
Published: June 5, 2010 , Updated: June 1, 2010 , Author: mkyong
Here’s an example to check if a directory is empty.
Example
package com.mkyong.file; import java.io.File; public class CheckEmptyDirectoryExample { public static void main(String[] args) { File file = new File("C:\\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"); } } }
Any Java questions or problems? please post at this JavaNullPointer.com forum, see you there ~
Good example