Logo

Programming-Idioms

History of Idiom 180 > diff from v7 to v8

Edit summary for version 8 by Debaran:
New Rust implementation by user [Debaran]

Version 7

2019-01-13, 09:54:39

Version 8

2019-02-01, 05:42:38

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
Imports
use std::fs;
Code
let x = fs::read_dir(d).unwrap();
Doc URL
https://doc.rust-lang.org/std/fs/fn.read_dir.html