Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR RUST

check if a file exists rust

use std::path::Path;

fn main() {
    println!("{}", Path::new("/etc/hosts").exists());
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #check #file #exists #rust
ADD COMMENT
Topic
Name
2+7 =