vote up 8 vote down star
3

I see this all the time in ruby:

require File.dirname(__FILE__) + "/../../config/environment"

What I am wondering is what does the __FILE__ mean?

flag

80% accept rate

5 Answers

vote up 11 vote down check

It is a reference to the current file name so in foo.rb __FILE__ would be interpreted as '/full/path/to/foo.rb'

link|flag
This answer is not accurate. FILE is the "relative" path to the file from the current execution directory - not absolute. You must use File.expand_path(FILE) to get the absolute path – Luke Bayes Sep 9 at 21:29
Double underscores were automatically removed within the comment above. – Luke Bayes Sep 9 at 21:30
vote up 1 vote down

The value of __FILE__ is a relative path that is created and stored (but never updated) when your file is loaded. This means that if you have any calls to Dir.chdir anywhere else in your application, this path will expand incorrectly.

puts __FILE__
Dir.chdir '../../'
puts __FILE__

One workaround to this problem is to store the expanded value of FILE outside of any application code. As long as your require statements are at the top of your definitions (or at least before any calls to Dir.chdir), this value will continue to be useful after changing directories.

$MY_FILE_PATH = File.expand_path(File.dirname(__FILE__))

# open class and do some stuff that changes directory

puts $MY_FILE_PATH
link|flag
vote up 2 vote down

in ruby (windows version anyways) I just checked and __FILE__ does not contain the full path to the file, instead it contains the path to the file relative to where its being executed from. in PHP __FILE__ is the full path (which IMO is preferable). This is why in order to make your paths portable in ruby you really need to use this:

File.expand_path(File.dirname(__FILE__) + "relative/path/to/file")
link|flag
vote up 2 vote down

__FILE__ is the filename with extension of the file containing the code being executed.

In foo.rb, __FILE__ would be "foo.rb".

If foo.rb were in the dir /home/josh then File.dirname(__FILE__) would return /home/josh.

link|flag
vote up 2 vote down

http://neeraj.name/blog/articles/228-file-in-ruby

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.