Flowdock
method

wrap_traverse

Importance_0
v2_1_10 - Show latest stable - 0 notes - Class: FileUtils::Entry_
wrap_traverse(pre, post) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/fileutils.rb, line 1505
    def wrap_traverse(pre, post)
      pre.call self
      if directory?
        entries.each do |ent|
          ent.wrap_traverse pre, post
        end
      end
      post.call self
    end
Register or log in to add new notes.