Q:

Ruby program to print the current working directory

belongs to collection: Ruby Directories Programs

0

In this program, we will get the current working directory using Dir.pwd() method and print the result.

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 print the current working directory is given below. The given program is compiled and executed on Windows 10 Operating System successfully.

# Ruby program to print the
# current working directory

puts "Current working directory is: ",Dir.pwd();

Output:

D:\ruby_programs

Explanation:

In the above program, we used Dir.pwd() method to get the current working directory and printed the result.

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

total answers (1)

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