2 declare(strict_types=1);
26 private $vcsPatterns = [
'.svn',
'_svn',
'CVS',
'_darcs',
'.arch-params',
'.monotone',
'.bzr',
'.git',
'.hg'];
65 $this->ignore = static::IGNORE_VCS_FILES | static::IGNORE_DOT_FILES;
105 public function exclude(array $directories) : self
107 array_walk($directories,
function ($directory) {
108 if (!is_string($directory)) {
109 if (is_object($directory)) {
110 throw new \InvalidArgumentException(sprintf(
'Invalid directory given: %s', get_class($directory)));
113 throw new \InvalidArgumentException(sprintf(
'Invalid directory given: %s', gettype($directory)));
117 $clone = clone $this;
118 $clone->exclude = array_merge($clone->exclude, $directories);
127 public function in(array $directories) : self
129 array_walk($directories,
function ($directory) {
130 if (!is_string($directory)) {
131 if (is_object($directory)) {
132 throw new \InvalidArgumentException(sprintf(
'Invalid directory given: %s', get_class($directory)));
135 throw new \InvalidArgumentException(sprintf(
'Invalid directory given: %s', gettype($directory)));
139 $clone = clone $this;
140 $clone->dirs = array_unique(array_merge($clone->dirs, $directories));
157 public function depth($level) : self
159 $clone = clone $this;
181 public function date(
string $date) : self
183 $clone = clone $this;
209 $clone = clone $this;
223 $clone = clone $this;
224 $clone->reverseSorting =
true;
235 $clone = clone $this;
237 $clone->ignore |= static::IGNORE_VCS_FILES;
251 array_walk($pattern,
function ($p) {
252 if (!is_string($p)) {
254 throw new \InvalidArgumentException(sprintf(
'Invalid pattern given: %s', get_class($p)));
257 throw new \InvalidArgumentException(sprintf(
'Invalid pattern given: %s', gettype($p)));
261 $clone = clone $this;
262 foreach ($pattern as $p) {
263 $clone->vcsPatterns[] = $p;
266 $clone->vcsPatterns = array_unique($clone->vcsPatterns);
280 $clone = clone $this;
281 $clone->sort = $closure;
290 public function sortByName(
bool $useNaturalSort =
false) : self
292 $clone = clone $this;
294 if ($useNaturalSort) {
306 $clone = clone $this;
317 $clone = clone $this;
330 public function append(iterable $iterator) : self
332 $clone = clone $this;
335 $clone->iterators[] = $iterator->getIterator();
336 } elseif ($iterator instanceof \
Iterator) {
337 $clone->iterators[] = $iterator;
338 } elseif ($iterator instanceof \Traversable || is_array($iterator)) {
339 $it = new \ArrayIterator();
340 foreach ($iterator as $file) {
344 throw new \InvalidArgumentException(
'Finder::append() method wrong argument type in passed iterator.');
347 $clone->iterators[] = $it;
349 throw new \InvalidArgumentException(
'Finder::append() method wrong argument type.');
361 if (static::IGNORE_VCS_FILES === (static::IGNORE_VCS_FILES & $this->ignore)) {
371 $iterator = new \RecursiveIteratorIterator($iterator, \RecursiveIteratorIterator::SELF_FIRST);
396 $iterator = $iteratorAggregate->getIterator();
408 if (0 ===
count($this->dirs) && 0 ===
count($this->iterators)) {
409 throw new \LogicException(
'You must call one of in() or append() methods before iterating over a Finder.');
412 if (1 ===
count($this->dirs) && 0 ===
count($this->iterators)) {
416 $iterator = new \AppendIterator();
417 foreach ($this->dirs as $dir) {
421 foreach ($this->iterators as $it) {
422 $iterator->append($it);
size($sizes)
Adds tests for file sizes.
depth($level)
Adds tests for the directory depth.
ignoreVCS(bool $ignoreVCS)
__construct(Filesystem $filesystem)
Finder constructor.
const SORT_BY_NAME_NATURAL
addVCSPattern(array $pattern)
sort(\Closure $closure)
Sorts files and directories by an anonymous function.
searchInDirectory(string $dir)
exclude(array $directories)
date(string $date)
Adds tests for file dates.
append(iterable $iterator)
Appends an existing set of files/directories to the finder.
Class FlySystemFileAccessTest.
sortByName(bool $useNaturalSort=false)