Method: Train::File#path

Defined in:
lib/train/file.rb

#pathObject



113
114
115
116
117
118
119
# File 'lib/train/file.rb', line 113

def path
  if symlink? && @follow_symlink
    link_path
  else
    @path
  end
end