Rustで指定ディレクトリ内の全てのファイルのパスを取得する - Qiita

サンプルコード use std::error::Error; use std::fs; use std::path; pub fn read_dir(path: &str) -> Result, Box> { ...