# File lib/pdf/reader/explore.rb, line 72
    def cd (path)
      path = path.to_s

      if path[0,1] == "/"
        @pwd = path
      else
        @pwd = Pathname.new(@pwd + '/' + path).cleanpath.to_s
      end
    end