Method: Puppet::FileSystem.children

Defined in:
lib/puppet/file_system.rb

.children(path) ⇒ Array<Object>

Returns references to all of the children of the given directory path, excluding . and ...

Returns:

  • (Array<Object>)

    references to all of the children of the given directory path, excluding . and ...



231
232
233
# File 'lib/puppet/file_system.rb', line 231

def self.children(path)
  @impl.children(assert_path(path))
end