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"
编程语言: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"