Home »
Ruby »
Ruby Programs
Ruby program to print the current working directory
Ruby Example: Write a program to print the current working directory.
Submitted by Nidhi, on February 20, 2022
Problem Solution:
In this program, we will get the current working directory using Dir.pwd() method and print the result.
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.
Ruby Directories Programs »