up vote 0 down vote favorite
share [g+] share [fb]

Hi I have been testing some very basic things in ruby and discover the following.

If i put in a file called xxxx.rb in this path "C:\Documents and Settings\Desktop\xxxx.rb"

puts __FILE__

and invoke this ruby file in a command line WITHOUT preceding ruby the output is the following

C:/Documents and Settings/Desktop/xxxx.rb

but if i invoke the xxxx.rb file with ruby (ruby xxxx.rb) in the command like the output is the following:

xxxx.rb

Why is that difference?? Thanks

PD: I'M ON WINDOWS XP SP3

RUBY VERSION: 1.8.6

link|improve this question

74% accept rate
feedback

2 Answers

up vote 1 down vote accepted

What you want is to expand the path properly:

# Affected by the current working directory, etc.
puts __FILE__

# Always an absolute path
puts File.expand_path(__FILE__, Dir.getwd)

This takes your current working directory into account.

link|improve this answer
Thanks for that appreciation. I find it useful, however i'm still confused about the fact of getting two different outputs just calling the file whit the subtle difference of adding ruby in front of xxxx.rb If a call the file in this ways: Way 1: xxxx.rb Way 2: ruby xxxx.rb I expect to obtain the same result but it give me different results... Thanks a lot. – flyer88 Nov 5 '09 at 14:05
feedback

I'm guessing that when you just double click on the file, the absolute path gets passed. You should achieve the same effect by calling it like:

ruby C:/Documents and Settings/Desktop/xxxx.rb

link|improve this answer
Yes, you are right. But i'm not double clicking the .rb file. I'm just calling the file in the cmd line prompt in two ways. The first way only calling xxxx.rb (obviousley the path were i am in is C:/Documents and Settings/Desktop/) The second way calling ruby xxxx.rb I think there shouldn'b be differences but well, calling the file like yours answers bring me the absolute path... I am still confused though... Thanks. – flyer88 Nov 5 '09 at 14:02
feedback

Your Answer

 
or
required, but never shown

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