WP_Filesystem_Base::dirlist() WordPress Method

The WP_Filesystem_Base::dirlist() method is used to list the contents of a directory. It takes two arguments: the directory to list and an optional array of options. The default options are 'recursive' => false, 'include_hidden' => true, and 'limit_depth' => 0.

WP_Filesystem_Base::dirlist( string $path, bool $include_hidden = true, bool $recursive = false ) #

Gets details for files in a directory or a specific file.


Parameters

$path

(string)(Required)Path to directory or file.

$include_hidden

(bool)(Optional) Whether to include details of hidden ("." prefixed) files.

Default value: true

$recursive

(bool)(Optional) Whether to recursively include file details in nested directories.

Default value: false


Top ↑

Return

(array|false) Array of files. False if unable to list directory contents.

  • 'name'
    (string) Name of the file or directory.
  • 'perms'
    (string) *nix representation of permissions.
  • 'permsn'
    (string) Octal representation of permissions.
  • 'owner'
    (string) Owner name or ID.
  • 'size'
    (int) Size of file in bytes.
  • 'lastmodunix'
    (int) Last modified unix timestamp.
  • 'lastmod'
    (mixed) Last modified month (3 letter) and day (without leading 0).
  • 'time'
    (int) Last modified time.
  • 'type'
    (string) Type of resource. 'f' for file, 'd' for directory.
  • 'files'
    (mixed) If a directory and $recursive is true, contains another array of files.


Top ↑

Source

File: wp-admin/includes/class-wp-filesystem-base.php

	public function dirlist( $path, $include_hidden = true, $recursive = false ) {
		return false;
	}


Top ↑

Changelog

Changelog
VersionDescription
2.5.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.