How can I get the filename 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
If you have access to ENV variables, scan
combined with this little regex (which finds the last but one word, a dot, then the last word of the string) will put the file's name into 'filename':
filename = ENV['SCRIPT_NAME'].scan(/\w+\.\w+$/)
Obviously, you can use scan
and the regex on any path name that includes the filename, and __FILE__
is the obvious choice:
__FILE__.scan(/\w+\.\w+$/)