To find the path of a file in Ruby, you can use the File
class and its expand_path
method. The expand_path
method takes a filename and returns the absolute path of that file.
Here's an example:
main.rb114 chars4 lines
This will output something like:
main.rb64 chars2 lines
This method is also useful when working with relative file paths. You can pass a relative file path to expand_path
and it will return the absolute path based on the current working directory.
gistlibby LogSnag