RosettaCodeData/Task/Empty-directory/Java/empty-directory.java

6 lines
172 B
Java
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
import java.nio.file.Paths;
//... other class code here
public static boolean isEmptyDir(String dirName){
return Paths.get(dirName).toFile().listFiles().length == 0;
}