in reply to Re: Should a constructor ever return undef?
in thread Should a constructor ever return undef?

I like simply:
my $foo = MaybeADirectoryObject->new(@args) or die "No object: $!";
eval() catching exceptions seems more awkward to me.

I would probably carp() instead of print in the constructor.