Vérifiez si un fichier existe de la rouille

use std::path::Path;

fn main() {
    println!("{}", Path::new("/etc/hosts").exists());
}
ali ahmed