# File fs.rb, line 94
    def [] aSubPath, aDeref = false
      child = Node.new("#{@path}/#{aSubPath}")

      if aDeref
        child.read
      else
        child
      end
    end