How to get the current working directory's absolute path in Ruby?
Asked Answered
E

6

320

I'm running Ruby on Windows though I don't know if that should make a difference. All I want to do is get the current working directory's absolute path. Is this possible from irb? Apparently from a script it's possible using File.expand_path(__FILE__)

But from irb I tried the following and got a "Permission denied" error:

File.new(Dir.new(".").path).expand
Edric answered 21/12, 2009 at 1:23 Comment(5)
The question is not actually clear: Do you want a) the current working directory (which is Dir.pwd) or do you want the directory where the currently running script is located (which is File.dirname(__FILE__))? Imagine calling a script from anywhere else (like ruby testdirectory/testscript.rb) here, the two will be different!Eufemiaeugen
@Eufemiaeugen You claim my question is unclear and then ask "Do you want a) the current working directory ...." and my question states "All I want to do is get the current working directory's absolute path...". What's unclear?Edric
it's unclear because of the sentence " Apparently from a script it's possible using File.expand_path(__FILE__)" - because __FILE__'s location is a different animal than current working dir (which is Dir.pwd).Eufemiaeugen
@Eufemiaeugen I thought I did a pretty good job differentiating "from irb" which is right there in the title of the question (and twice within the question itself), from "from a script"Edric
The reason the question is very unclear is that even in a script, File.expand_path(__FILE__) does not "get the current working directory's absolute path".Recess
A
580

Dir.pwd is the current working directory

http://ruby-doc.org/core/Dir.html#method-c-pwd

Assortment answered 21/12, 2009 at 1:31 Comment(3)
Note: this does not return the location of the current file. In order to do that, see the answers below. This only returns the current working directory of the shell which is calling the script (just like pwd), which might be somewhere completely different than where the script file is located.Cranford
@Cranford It does EXACTLY what I asked: "get the current working directory's absolute path".Edric
@Edric That's fine for you. I had a different use case scenario and so I made a note for myself and anyone else who might face the same issue. As you can see from the upvotes on the answer below, there are almost 200 others (at least) who also had the same issue.Cranford
A
199

File.expand_path File.dirname(__FILE__) will return the directory relative to the file this command is called from.

But Dir.pwd returns the working directory (results identical to executing pwd in your terminal)

Abdella answered 26/9, 2011 at 8:27 Comment(4)
Dir.pwd is equivalent to pwd -P. exec('pwd -L') will get the equivalent of pwd in the terminal (pwd is normally a bash builtin, and doesn't resolve symbolic links).Gaulin
please take also a look to the often forgotten Pathname class: ruby-doc.org/stdlib-2.1.1/libdoc/pathname/rdoc/Pathname.htmlIntergrade
There is a problem, Dir.pwd will print the working directory of where the script is ran - which may not be what you want.Tremor
Yes, assuming that you run command bundle exec rspec spec in directory '/project', while in file 'spec/spec_helper.rb', the value of Dir.pwd will still be '/project'.Manado
G
70

As for the path relative to the current executing script, since Ruby 2.0 you can also use

__dir__

So this is basically the same as

File.dirname(__FILE__)
Gillead answered 19/3, 2015 at 15:25 Comment(2)
@Zequez Because __FILE__ is a constant but __dir__ is a method.Hamlani
this will print the working directory of where the script is ran as @Tremor said.Disassociate
B
6

This will give you the working directory of the current file.

File.dirname(__FILE__)

Example:

current_file: "/Users/nemrow/SITM/folder1/folder2/amazon.rb"

result: "/Users/nemrow/SITM/folder1/folder2"

Birdwatcher answered 14/7, 2014 at 17:11 Comment(1)
Please note that the working directory must not be the same as the actual file. So Dir.pwd and your suggestion might potentially differ.Actinal
Q
6

Through this you can get absolute path of any file located in any directory.

File.join(Dir.pwd,'some-dir','some-file-name')

This will return

=> "/User/abc/xyz/some-dir/some-file-name"
Quiteri answered 6/3, 2017 at 11:38 Comment(0)
E
5

If you want to get the full path of the directory of the current rb file:

File.expand_path('../', __FILE__)
Exemplification answered 6/10, 2016 at 3:26 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.