# File lib/pathname2.rb, line 880
   def glob(*args)
      Dir.chdir(self){
         if block_given?
            Dir.glob(*args){ |file| yield self.class.new(file) }
         else
            Dir.glob(*args).map{ |file| self.class.new(file) }
         end
      }
   end