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

6 lines
172 B
Java
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import java.nio.file.Paths;
//... other class code here
public static boolean isEmptyDir(String dirName){
return Paths.get(dirName).toFile().listFiles().length == 0;
}