Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!

Idiom #273 Check if folder is empty

Set the boolean b to true if the directory at filepath p is empty (i.e. doesn't contain any other files and directories)

b = Dir.empty?(p)

Returns true if the named file is an empty directory, false if it is not a directory or non-empty.
import 'dart:io';
var b = await Directory(p).list().isEmpty;

New implementation...
< >
programming-idioms.org