= private = protected
entries()
Return the entries (files and subdirectories) in the directory, each as a Pathname object.
# File lib/pathname.rb, line 958 def entries() Dir.entries(@path).map {|f| self.class.new(f) } end