Q:

Ruby program to create a directory

belongs to collection: Ruby Directories Programs

0

In this program, we will create a directory using Dir.mkdir() 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 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.

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

total answers (1)

Ruby program to check a directory is exist or not... >>