The source code to check a specified directory exists or not is given below. The given program is compiled and executed on UBUNTU 18.04 successfully.
// Rust program to check a specified directory
// exists or not
use std::path::Path;
fn main() {
let path1 = "MyDir";
let path2 = "MyDir1";
let result1: bool = Path::new(path1).is_dir();
let result2: bool = Path::new(path2).is_dir();
if result1==true
{
println!("Directory 'MyDir' exists");
}
else
{
println!("Directory 'MyDir' does not exists");
}
if result2==true
{
println!("Directory 'MyDir1' exists");
}
else
{
println!("Directory 'MyDir1' does not exists");
}
}
Output:
$ rustc main.rs
$ ./main
Directory 'MyDir' exists
Directory 'MyDir1' does not exists
Explanation:
Here, we checked a specified directory exists or not using the is_dir() method and printed the appropriate message.
Program/Source Code:
The source code to check a specified directory exists or not is given below. The given program is compiled and executed on UBUNTU 18.04 successfully.
Output:
Explanation:
Here, we checked a specified directory exists or not using the is_dir() method and printed the appropriate message.
need an explanation for this answer? contact us directly to get an explanation for this answer