I understand I can get current directory by

$CurrentDir = Dir.pwd

How about parent directory of current directory?

link|improve this question

feedback

2 Answers

up vote 8 down vote accepted
File.expand_path("..",Dir.pwd)
link|improve this answer
1  
@Niklas: Or File.expand_path('..'), the default dir_string is '.'. – mu is too short Dec 28 '11 at 22:07
@muistooshort: nice to know :) – Niklas B. Dec 28 '11 at 22:21
@Niklas: I just learned it too so we're even :) – mu is too short Dec 28 '11 at 22:37
feedback

Perhaps the simplest solution:

puts File.expand_path('../.') 
link|improve this answer
1  
Why not just File.expand_path('..')? – mu is too short Dec 28 '11 at 22:07
@muistooshort indeed interesting, and definitly useful to know, thanks ;) – maprihoda Dec 29 '11 at 8:43
Your answer piqued my curiosity to check the spec for File.expand_path so thanks for that. – mu is too short Dec 29 '11 at 9:29
feedback

Your Answer

 
or
required, but never shown

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