Ruby,从path+文件名获取path

编程语言:Ruby 1.9

问题string: C:/Test/blah.txt
C:/Test/

我知道这是一个简单的问题,但Google和File Rapid Quickref对我来说没有任何解决scheme。
而我对Regex没有经验。

使用Ruby File.dirname方法。

 File.dirname("C:/Test/blah.txt") # => "C:/Test"