Ruby program to check a directory is exist or not

Ruby Example: Write a program to check a directory is exist or not.
Submitted by Nidhi, on February 20, 2022

Problem Solution:

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

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.

Ruby Directories Programs »


ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT


Top MCQs

Comments and Discussions!




Languages: » C » C++ » C++ STL » Java » Data Structure » C#.Net » Android » Kotlin » SQL
Web Technologies: » PHP » Python » JavaScript » CSS » Ajax » Node.js » Web programming/HTML
Solved programs: » C » C++ » DS » Java » C#
Aptitude que. & ans.: » C » C++ » Java » DBMS
Interview que. & ans.: » C » Embedded C » Java » SEO » HR
CS Subjects: » CS Basics » O.S. » Networks » DBMS » Embedded Systems » Cloud Computing
» Machine learning » CS Organizations » Linux » DOS
More: » Articles » Puzzles » News/Updates

© https://www.includehelp.com some rights reserved.