# File lib/fusefs/dirlink.rb, line 35 def read_file(path) fn = File.join(@base,path) if File.file?(fn) IO.read(fn) else 'No such file' end end