# File fs.rb, line 58
    def read
      cont = Client.read(@path)

      if cont.respond_to? :to_ary
        cont.map {|stat| stat.name}
      else
        cont
      end
    end