Subject: | File::Remote lacks ability to discover files |
You're missing glob, opendir, closedir, readdir, seekdir, stat, lstat,
and -X (by which I mean all of the test functions listed in the perl
manpage under -X, except -t (as -t only works on open filehandles, so
should not need adjustment.))
In case you're not familiar with glob, it is better known via its
syntactic sugar:
my @txt_file_list = <*.txt>;
This functionality normally comes from File::Glob (at least, since
v5.6.0, according to the code comments).