iprods / filesystem-scanner
A simple file system scanner.
1.0.0
2015-11-09 19:33 UTC
Requires (Dev)
- mikey179/vfsstream: ~1.6
- phpspec/phpspec: ~2.3
This package is not auto-updated.
Last update: 2024-10-26 19:21:28 UTC
README
This small library aims to add some useful helpers for working with file systems.
Installation
composer require iprods/filesystem-scanner
Usage
In order to use the path filtering you need to define what file name pattern to apply.
Optionally you can add a filter for blacklisting paths (absolute or relative). It defaults to Tests
.
Another option is to set the supported file extensions. This defaults to .php
and .hh
.
$scanner = new \Iprods\Filesystem\Scanner\FileScanner('[^\/]+Bundle', ['Tests', 'App']);
$info = $scanner->scan(['/path/to/scan', '/path/to/scan_too]);
$info
will then contain a list of items consisting of:
- full path
- file name
- file extension
License
This software is released under the MIT license (see included license file).
Credits
Everyone who writes open source code and therefore lets other people use it and learn from it.