Q:

Ruby program to check a directory is exist or not

belongs to collection: Ruby Directories Programs

0

In this program, we will check a directory exists or not using Dir.exists() 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 directory exists or not is given below. The given program is compiled and executed on Windows 10 Operating System successfully.

# Ruby program to check a directory 
# is exist or not

if (Dir.exists?("mydir") == true)
	puts "Directory exists.";
else
	puts "Directory does not exist.";
end

Output:

Directory exists.

Explanation:

In the above program, we used Dir.exists?() method to check a directory exists or not. The Dir.exists?() method returns true if a specified directory exists otherwise it returns false. After that, we printed the appropriate message.

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

total answers (1)

Ruby program to print the current working director... >>
<< Ruby program to create a directory...