Search Results

3
votes

How do I read in the contents of a directory in Perl?

You could use DirHandle: use DirHandle; $d = new DirHandle "."; if (defined $d) { …