WP_Filesystem_Direct::dirlist()publicWP 2.5.0

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

Method of the class: WP_Filesystem_Direct{}

No Hooks.

Return

Array|false. Array of arrays containing file information. False if unable to list directory contents.

Usage

$WP_Filesystem_Direct = new WP_Filesystem_Direct();
$WP_Filesystem_Direct->dirlist( $path, $include_hidden, $recursive );
$path(string) (required)
Path to directory or file.
$include_hidden(true|false)
Whether to include details of hidden ("." prefixed) files.
Default: true
$recursive(true|false)
Whether to recursively include file details in nested directories.
Default: false

Changelog

Since 2.5.0 Introduced.

WP_Filesystem_Direct::dirlist() code WP 6.4.3

public function dirlist( $path, $include_hidden = true, $recursive = false ) {
	if ( $this->is_file( $path ) ) {
		$limit_file = basename( $path );
		$path       = dirname( $path );
	} else {
		$limit_file = false;
	}

	if ( ! $this->is_dir( $path ) || ! $this->is_readable( $path ) ) {
		return false;
	}

	$dir = dir( $path );

	if ( ! $dir ) {
		return false;
	}

	$path = trailingslashit( $path );
	$ret  = array();

	while ( false !== ( $entry = $dir->read() ) ) {
		$struc         = array();
		$struc['name'] = $entry;

		if ( '.' === $struc['name'] || '..' === $struc['name'] ) {
			continue;
		}

		if ( ! $include_hidden && '.' === $struc['name'][0] ) {
			continue;
		}

		if ( $limit_file && $struc['name'] !== $limit_file ) {
			continue;
		}

		$struc['perms']       = $this->gethchmod( $path . $entry );
		$struc['permsn']      = $this->getnumchmodfromh( $struc['perms'] );
		$struc['number']      = false;
		$struc['owner']       = $this->owner( $path . $entry );
		$struc['group']       = $this->group( $path . $entry );
		$struc['size']        = $this->size( $path . $entry );
		$struc['lastmodunix'] = $this->mtime( $path . $entry );
		$struc['lastmod']     = gmdate( 'M j', $struc['lastmodunix'] );
		$struc['time']        = gmdate( 'h:i:s', $struc['lastmodunix'] );
		$struc['type']        = $this->is_dir( $path . $entry ) ? 'd' : 'f';

		if ( 'd' === $struc['type'] ) {
			if ( $recursive ) {
				$struc['files'] = $this->dirlist( $path . $struc['name'], $include_hidden, $recursive );
			} else {
				$struc['files'] = array();
			}
		}

		$ret[ $struc['name'] ] = $struc;
	}

	$dir->close();
	unset( $dir );

	return $ret;
}