method

entries

entries()
public

No documentation available.

# File lib/fileutils.rb, line 1195
    def entries
      opts = {}
      opts[:encoding] = ::Encoding::UTF_8 if fu_windows?
      Dir.entries(path(), opts)           .reject {|n| n == '.' or n == '..' }           .map {|n| Entry_.new(prefix(), join(rel(), n.untaint)) }
    end