How can I get the file name from a file path in Ruby?
For example if I have a path of "C:\projects\blah.dll"
and I just want the blah.
Is there a LastIndexOf function in Ruby?
|
How can I get the file name from a file path in Ruby? For example if I have a path of "C:\projects\blah.dll" and I just want the blah. Is there a LastIndexOf function in Ruby? |
||||
|
|
Not a windows user in a long time, but the Pathname rdoc says it has no issues with directory name separators on windows. |
|||||||||
|
|
Try
In your case:
|
|||||||
|
|
In case the extension is not known (it needs the / separator):
|
|||||
|
|
Jonathon's answer is better, but to let you know somelist[-1] is one of the LastIndexOf notations available. (As krusty.ar mentioned somelist.last apparently is too!)
|
||||
|
|
|
Note that double quotes strings escape \'s.
|
|||||
|
|
If you have access to ENV variables,
Obviously, you can use
|
||||
|
|