Ruby program to create a directory

Ruby Example: Write a program to create a directory.
Submitted by Nidhi, on February 20, 2022

Problem Solution:

In this program, we will create a directory using Dir.mkdir() method and print the appropriate message.

Program/Source Code:

The source code to create a directory is given below. The given program is compiled and executed on Windows 10 Operating System successfully.

# Ruby program to create a directory

if (Dir.mkdir("mydir") == 0)
	puts "Directory created successfully";
else
	puts "Directory creation failed";
end

Output:

Directory created successfully

Explanation:

In the above program, we created a directory mydir using Dir.mkdir() method. The Dir.mkdir() method returns 0 on successful creation of directory.

Ruby Directories Programs »




Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.