DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Using File#join
Source: <a href="http://ruby-doc.org/core/classes/File.html#M002545">Class: File</a> [ruby-doc.org]
<snip>
Returns a new string formed by joining the strings using File::SEPARATOR.
File.join("usr", "mail", "gumby") #=> "usr/mail/gumby"</snip>





