#Platform independant way of showing a File path. Empty String ('') means the root
puts File.join('', 'Users', 'chrisaiv', 'Desktop')
#Provide the RELATIVE path of THIS file
puts __FILE__
# ...
↧