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));
155 public function depth($level) : self
157 $clone = clone $this;
177 public function date(
string $date) : self
179 $clone = clone $this;
203 $clone = clone $this;
217 $clone = clone $this;
218 $clone->reverseSorting =
true;
229 $clone = clone $this;
231 $clone->ignore |= static::IGNORE_VCS_FILES;
245 array_walk($pattern,
function ($p) {
246 if (!is_string($p)) {
248 throw new \InvalidArgumentException(sprintf(
'Invalid pattern given: %s', get_class($p)));
251 throw new \InvalidArgumentException(sprintf(
'Invalid pattern given: %s', gettype($p)));
255 $clone = clone $this;
256 foreach ($pattern as $p) {
257 $clone->vcsPatterns[] = $p;
260 $clone->vcsPatterns = array_unique($clone->vcsPatterns);
274 $clone = clone $this;
275 $clone->sort = $closure;
284 public function sortByName(
bool $useNaturalSort =
false) : self
286 $clone = clone $this;
288 if ($useNaturalSort) {
300 $clone = clone $this;
311 $clone = clone $this;
324 public function append(iterable $iterator) : self
326 $clone = clone $this;
329 $clone->iterators[] = $iterator->getIterator();
330 } elseif ($iterator instanceof \
Iterator) {
331 $clone->iterators[] = $iterator;
332 } elseif ($iterator instanceof \Traversable || is_array($iterator)) {
333 $it = new \ArrayIterator();
334 foreach ($iterator as $file) {
338 throw new \InvalidArgumentException(
'Finder::append() method wrong argument type in passed iterator.');
341 $clone->iterators[] = $it;
343 throw new \InvalidArgumentException(
'Finder::append() method wrong argument type.');
355 if (static::IGNORE_VCS_FILES === (static::IGNORE_VCS_FILES&$this->ignore)) {
365 $iterator = new \RecursiveIteratorIterator($iterator, \RecursiveIteratorIterator::SELF_FIRST);
390 $iterator = $iteratorAggregate->getIterator();
402 if (0 ===
count($this->dirs) && 0 ===
count($this->iterators)) {
403 throw new \LogicException(
'You must call one of in() or append() methods before iterating over a Finder.');
406 if (1 ===
count($this->dirs) && 0 ===
count($this->iterators)) {
410 $iterator = new \AppendIterator();
411 foreach ($this->dirs as $dir) {
415 foreach ($this->iterators as $it) {
416 $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 disabled disabled disabled.
sortByName(bool $useNaturalSort=false)