Logo

Programming-Idioms

  • Fortran
  • Go
  • Perl
  • C

Idiom #180 List files in directory

Create the list x containing the contents of the directory d.

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

#include <dirent.h>
struct dirent ** x = NULL;
int n = scandir (p, &x, NULL, alphasort);

scandir allocates memory and returns the number of entries. each entry must be free'd. See also opendir, readdir and closedir and ftw for recursive traversal.
import "os"
x, err := os.ReadDir(d)

x is a slice of os.FileInfo
use File::Basename;
my @x = map {basename $_} glob("$d/*");
opendir my $dh, $d or die "Could not open $d for reading: $!\n";
@x = readdir $dh;
closedir $dh;
(def x ((comp file-seq clojure.java.io/file) d))

New implementation...
< >
programming-idioms.org