Logo

Programming-Idioms

  • Python
  • Smalltalk
  • C#
  • Rust

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.

let x = std::fs::read_dir(d)?.collect::<Result<Vec<_>, _>>()?;
let x = std::fs::read_dir(d).unwrap();

x is a fs::ReadDir iterator over std::io::Result<fs::DirEntry>
import os
x = os.listdir(d)
using System.IO
var files = Directory.GetFiles(dirPath);
#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.

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