WP_Filesystem_Base::dirlist() – Gets details for files in a directory or a specific file.
You appear to be a bot. Output may be restricted
Description
Gets details for files in a directory or a specific file.
Usage
$array|false = WP_Filesystem_Base::dirlist( $path, $include_hidden, $recursive );
Parameters
- $path
- ( string ) required – Path to directory or file.
- $include_hidden
- ( bool ) optional default: 1 – Optional. Whether to include details of hidden ("." prefixed) files. Default true.
- $recursive
- ( bool ) optional – Optional. Whether to recursively include file details in nested directories. Default false.
- $0…
- ( array ) optional – { Array of file information. Note that some elements may not be available on all filesystems.
- $name
- ( string ) optional – Name of the file or directory.
- $perms
- ( string ) optional – *nix representation of permissions.
- $permsn
- ( string ) optional – Octal representation of permissions.
- $number
- ( int|string|false ) optional – File number. May be a numeric string. False if not available.
- $owner
- ( string|false ) optional – Owner name or ID, or false if not available.
- $group
- ( string|false ) optional – File permissions group, or false if not available.
- $size
- ( int|string|false ) optional – Size of file in bytes. May be a numeric string. False if not available.
- $lastmodunix
- ( int|string|false ) optional – Last modified unix timestamp. May be a numeric string. False if not available.
- $lastmod
- ( string|false ) optional – Last modified month (3 letters) and day (without leading 0), or false if not available.
- $time
- ( string|false ) optional – Last modified time, or false if not available.
- $type
- ( string ) optional – Type of resource. 'f' for file, 'd' for directory, 'l' for link.
- $files
- ( array|false ) optional – If a directory and
$recursive
is true, contains another array of files. False if unable to list directory contents. } }
Returns
array|false { Array of arrays containing file information. False if unable to list directory contents.
Source
File name: wordpress/wp-admin/includes/class-wp-filesystem-base.php
Lines:
1 to 3 of 3
public function dirlist( $path, $include_hidden = true, $recursive = false ) { return false; }