Search code examples
rubydirectory

Get parent directory of current directory in Ruby


I understand I can get current directory by

$CurrentDir = Dir.pwd

How about parent directory of current directory?


Solution

  • File.expand_path("..", Dir.pwd)