Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
def main(p) do
b = File.ls!(p) == []
end
boolean b = p.list().length == 0;
(let ((b (directory p)))
(if (null b) t nil))
opendir(my $dh, $p) || die($!);
my $b = scalar(grep { !/^[\.]{1,2}$/ } readdir($dh)) ? 1 : 0;
closedir($dh);
Technically, you can omit the ternary operator since any non-zero value will evaluate as true.
b = Dir.empty?(p)
Returns true if the named file is an empty directory, false if it is not a directory or non-empty.