📌  相关文章
📜  检查文件是否存在 rust 代码示例

📅  最后修改于: 2022-03-11 14:49:25.683000             🧑  作者: Mango

代码示例1
use std::path::Path;

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