WARNING: you're viewing docs for an outdated version. View the docs for the current version.

Provided Plugins (V1)

List paths.

This requires the League\Flysystem\Plugin\ListPaths plugin.

$filesystem->addPlugin(new ListPaths());
$paths = $filesystem->listPaths($path, $recursive);

foreach ($paths as $path) {
    echo $path;
}

List with ensured presence of specific metadata.

This requires the League\Flysystem\Plugin\ListWith plugin.

$filesystem->addPlugin(new ListWith);
$listing = $filesystem->listWith(['mimetype', 'size', 'timestamp'], 'optional/path/to/dir', true);

foreach ($listing as $object) {
    echo $object['path'].' has mimetype: '.$object['mimetype'];
}

Get file info with explicit metadata.

This requires the League\Flysystem\Plugin\GetWithMetadata plugin.

$info = $filesystem->getWithMetadata($path, ['timestamp', 'mimetype']);
echo $info['mimetype'];
echo $info['timestamp'];