Attention
TYPO3 v11 has reached end-of-life as of October 31th 2024 and is no longer being maintained. Use the version switcher on the top left of this page to select documentation for a supported version of TYPO3.
Need more time before upgrading? You can purchase Extended Long Term Support (ELTS) for TYPO3 v11 here: TYPO3 ELTS.
Searching for files
An API is provided by the file abstraction layer (FAL) to search for files in a
storage or folder. It includes matches in meta data of those files. The given
search term is looked for in all
search fields defined in TCA of
sys_
and sys_
tables.
Searching for files in a folder
<?php
declare(strict_types=1);
namespace MyVendor\MyExtension\Classes;
use TYPO3\CMS\Core\Resource\Search\FileSearchDemand;
use TYPO3\CMS\Core\Resource\StorageRepository;
final class SearchInFolderExample
{
private StorageRepository $storageRepository;
public function __construct(StorageRepository $storageRepository) {
$this->storageRepository = $storageRepository;
}
public function search($searchWord): void
{
$folder = $this->getFolderFromDefaultStorage('/some/path/in/storage/');
$searchDemand = FileSearchDemand::createForSearchTerm($searchWord)->withRecursive();
$files = $folder->searchFiles($searchDemand);
// ... more logic
}
private function getFolderFromDefaultStorage(string $path)
{
$defaultStorage = $this->storageRepository->getDefaultStorage();
return $defaultStorage->getFolder($path);
}
}
Searching for files in a storage
<?php
declare(strict_types=1);
namespace MyVendor\MyExtension\Classes;
use TYPO3\CMS\Core\Resource\Search\FileSearchDemand;
use TYPO3\CMS\Core\Resource\StorageRepository;
final class SearchInStorageExample
{
private StorageRepository $storageRepository;
public function __construct(StorageRepository $storageRepository) {
$this->storageRepository = $storageRepository;
}
public function search($searchWord): void
{
$storage = $this->storageRepository->getDefaultStorage();
$searchDemand = FileSearchDemand::createForSearchTerm($searchWord)->withRecursive();
$files = $storage->searchFiles($searchDemand);
// ... more logic
}
}
See also
Add additional restrictions
It is possible to further limit the result set, by adding additional
restrictions to the File
. Please note, that
File
is an immutable value object, but allows chaining
methods for ease of use:
<?php
declare(strict_types=1);
namespace MyVendor\MyExtension\Classes;
use TYPO3\CMS\Core\Resource\Search\FileSearchDemand;
use TYPO3\CMS\Core\Resource\StorageRepository;
final class SearchInStorageWithRestrictionsExample
{
private StorageRepository $storageRepository;
public function __construct(StorageRepository $storageRepository) {
$this->storageRepository = $storageRepository;
}
public function search($searchWord): void
{
$storage = $this->storageRepository->getDefaultStorage();
// Get the 10 biggest files in the storage
$searchDemand = FileSearchDemand::createForSearchTerm($searchWord)
->withRecursive()
->withMaxResults(10)
->addOrdering('sys_file', 'size', 'DESC');
$files = $storage->searchFiles($searchDemand);
// ... more logic
}
}
API
- class FileSearchDemand
-
- Fully qualified name
-
\TYPO3\
CMS\ Core\ Resource\ Search\ File Search Demand
Immutable value object that represents a search demand for files.
- withFolder ( TYPO3\\CMS\\Core\\Resource\\Folder $folder)
-
- param TYPO3\\CMS\\Core\\Resource\\Folder $folder
-
the folder
- returntype
-
self
- withStartResult ( int $firstResult)
-
Requests the position of the first result to retrieve (the "offset").
Same as in QueryBuilder it is the index of the result set, with 0 being the first result.
- param int $firstResult
-
the firstResult
- returntype
-
self
- addSearchField ( string $tableName, string $field)
-
- param string $tableName
-
the tableName
- param string $field
-
the field
- returntype
-
self
There is also a driver capability
\TYPO3\
to allow implementing an optimized search with good performance. Drivers can
optionally add this capability in case the identifiers that are constructed by
the driver include the directory structure. Adding this capability to drivers
can provide a big performance boost when it comes to recursive search (which is
default in the file list and file browser UI).