method
entries
entries()
public
Hide source
# File lib/fileutils.rb, line 1297 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