19 declare(strict_types=1);
63 private array
$vcsPatterns = [
'.svn',
'_svn',
'CVS',
'_darcs',
'.arch-params',
'.monotone',
'.bzr',
'.git',
'.hg'];
84 $this->ignore = self::IGNORE_VCS_FILES | self::IGNORE_DOT_FILES;
105 $clone = clone $this;
115 public function exclude(array $directories): self
117 array_walk($directories,
static function ($directory):
void {
118 if (!is_string($directory)) {
123 $clone = clone $this;
124 $clone->exclude = array_merge($clone->exclude, $directories);
133 public function in(array $directories): self
135 array_walk($directories,
static function ($directory):
void {
136 if (!is_string($directory)) {
141 $clone = clone $this;
142 $clone->dirs = array_unique(array_merge($clone->dirs, $directories));
158 public function depth(
string|
int $level): self
160 $clone = clone $this;
181 public function date(
string $date): self
183 $clone = clone $this;
202 public function size(
string|
int|array $sizes): self
206 $clone = clone $this;
208 foreach ($sizes as $size) {
217 $clone = clone $this;
218 $clone->reverseSorting =
true;
225 $clone = clone $this;
227 $clone->ignore |= self::IGNORE_VCS_FILES;
241 array_walk($pattern,
static function ($p):
void {
242 if (!is_string($p)) {
247 $clone = clone $this;
248 foreach ($pattern as $p) {
249 $clone->vcsPatterns[] = $p;
252 $clone->vcsPatterns = array_unique($clone->vcsPatterns);
264 $clone = clone $this;
265 $clone->sort = $closure;
270 public function sortByName(
bool $useNaturalSort =
false): self
272 $clone = clone $this;
274 if ($useNaturalSort) {
283 $clone = clone $this;
291 $clone = clone $this;
302 public function append(iterable $iterator): self
304 $clone = clone $this;
307 $clone->iterators[] = $iterator->getIterator();
309 $clone->iterators[] = $iterator;
310 } elseif (is_iterable($iterator)) {
312 foreach ($iterator as $file) {
317 'Finder::append() method wrong argument type in passed iterator.' 321 $clone->iterators[] = $it;
331 if (self::IGNORE_VCS_FILES === (self::IGNORE_VCS_FILES & $this->ignore)) {
347 if ($this->mode !== 0) {
366 $iterator = $iteratorAggregate->getIterator();
377 #[\ReturnTypeWillChange] 380 if ([] === $this->dirs && [] === $this->iterators) {
381 throw new LogicException(
'You must call one of in() or append() methods before iterating over a Finder.');
384 if (1 ===
count($this->dirs) && [] === $this->iterators) {
389 foreach ($this->dirs as $dir) {
393 foreach ($this->iterators as $it) {
394 $iterator->append($it);
size(string|int|array $sizes)
Adds tests for file sizes.
__construct(private Filesystem $filesystem)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ignoreVCS(bool $ignoreVCS)
sort(Closure $closure)
Sorts files and directories by an anonymous function.
const SORT_BY_NAME_NATURAL
addVCSPattern(array $pattern)
searchInDirectory(string $dir)
depth(string|int $level)
Adds tests for the directory depth.
exclude(array $directories)
date(string $date)
Adds tests for file dates.
append(iterable $iterator)
Appends an existing set of files/directories to the finder.
sortByName(bool $useNaturalSort=false)