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?
Thanks
Paul
|
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? Thanks Paul
| |||
|
feedback
|
|
Not a windows user in a long time, but the Pathname rdoc says it has no issues with directory name separators on windows. | |||
|
feedback
|
|
Try
In your case:
| ||||
feedback
|
|
In case the extension is not known (it needs the / separator):
| |||
|
feedback
|
|
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!)
| ||||
|
feedback
|
|
Note that double quotes strings escape \'s.
| |||||
feedback
|
|
If you have access to ENV variables,
Obviously, you can use
| ||||
|
feedback
|
|
You can get directory path to current script with:
| |||
|
feedback
|