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.
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.
Output:
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