http://qs321.pair.com?node_id=937693


in reply to Re: How to tell if a Directory is Empty
in thread How to tell if a Directory is Empty

return $count - 2; #maybe not the best way of removing . and . +.
Perhaps use grep for that?
sub isEmpty3 { return undef unless -d $_[0]; opendir my $dh, $_[0] or die $!; my $count = grep { ! /^\.{1,2}/ } readdir $dh; # strips out . and +.. return $count; }