class File

File extensions

Public Class Methods

joindir(dirname,*strings) click to toggle source

@return [String] File.join(File.dirname(dirname),strings)

@example

File.joindir(__FILE__,'foo.txt')
=> '/home/john/foo.txt'
# File lib/sixarm_ruby_ramp/file.rb, line 12
def File.joindir(dirname,*strings)
  File.join(File.dirname(dirname),strings)
end