Logo

Programming-Idioms

History of Idiom 180 > diff from v14 to v15

Edit summary for version 15 by e70838:
New Perl implementation by user [e70838]

Version 14

2019-03-26, 21:25:46

Version 15

2019-09-26, 14:16:03

Idiom #180 List files in directory

Create list x containing the contents of directory d.

x may contain files and subfolders.
No recursive subfolder listing.

Idiom #180 List files in directory

Create list x containing the contents of directory d.

x may contain files and subfolders.
No recursive subfolder listing.

Extra Keywords
folder ls dir listing
Extra Keywords
folder ls dir listing
Code
opendir my $dh, $d or die "Could not open $d for reading: $!\n";
@x = readdir $dh;
closedir $dh;