use std::io; use std::fs; use std::path::Path; fn visit_dirs(dir: &Path) -> io::Result<()> { if dir.is_dir() { for entry in fs::read_dir(dir)?
確定! 回上一頁