Method: Train::File#path

Defined in:
lib/train/file.rb

#pathObject



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

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