Q:

Rust program to check a specified directory exists or not

0

In this program, we will check a specified directory is exists or not using the is_dir() method and print the appropriate message.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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.

// 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.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now