each_entry {|pathname| ... } -> nil
[permalink][rdoc][edit]each_entry -> Enumerator
-
Dir.foreach(self.to_s) {|f| yield Pathname.new(f) } と同じです。
ブロックを省略した場合は Enumerator を返します。
require "pathname" Pathname("/usr/local").each_entry {|f| p f } # => #<Pathname:.> # => #<Pathname:..> # => #<Pathname:bin> # => #<Pathname:etc> # => #<Pathname:include> # => #<Pathname:lib> # => #<Pathname:opt>
[SEE_ALSO] Dir.foreach