Method: FileColumn::RealUploadedFile#absolute_path

Defined in:
lib/file_column.rb

#absolute_path(subdir = nil) ⇒ Object



172
173
174
175
176
177
178
# File 'lib/file_column.rb', line 172

def absolute_path(subdir=nil)
  if subdir
    File.join(@dir, subdir, @filename)
  else
    File.join(@dir, @filename)
  end
end