phuxtil / find
Easy interface for output of 'find' unix command
Installs: 14 281
Dependents: 2
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Requires
- php: ^8
- phuxtil/chmod: ^3
- phuxtil/splfileinfo: ^3
Requires (Dev)
- phpunit/phpunit: ^9
- symfony/var-dumper: ^4|^5
This package is auto-updated.
Last update: 2024-10-18 23:42:05 UTC
README
Easy interface for output of find
unix command
In Unix-like and some other operating systems, find is a command-line utility that searches one or more directory trees of a file system, locates files based on some user-specified criteria and applies a user-specified action on each matched file.
Installation
composer require phuxtil/find
Note: Use v1.x for compatibility with PHP v7.0.x Note: Use v2.x for compatibility with PHP v7.2+
Usage
find sample output
1560682188|1560682181|1560682181|0755|root|root|0|0|d|10245134|0|160|5|remote_fs/|/tmp/remote_fs/
1560682162|1560682181|1560682181|0644|root|root|0|0|f|10269956|8|1210|1|test.txt|/tmp/remote_fs/test.txt
1560682162|1560682181|1560682181|0644|root|root|0|0|f|10269956|8|1210|1|test_link.txt|/tmp/remote_fs/test_link.txt
Configuration
Use Phuxtil\Find\FindConfigurator
for configuration options.
$configurator = (new FindConfigurator()) ->setFormat('%As|%Cs|%Ts|%#m|%u|%g|%U|%G|%y|%i|%b|%s|%n|%f|%p') ->setFormatDelimiter('|') ->setLineDelimiter("\n") ->setFindOutput(...);
Facade
$results = (new FindFacade())->process($configurator);
[ 0 => Phuxtil\SplFileInfo\VirtualSplFileInfo { path: "/tmp" filename: "remote_fs" basename: "remote_fs" pathname: "/tmp/remote_fs" extension: "" realPath: "/tmp/remote_fs" aTime: 2019-06-16 12:49:48 mTime: 2019-06-16 12:49:41 cTime: 2019-06-16 12:49:41 inode: "10245134" size: "160" perms: 0755 owner: "0" group: "0" type: "dir" writable: true readable: true executable: true file: false dir: true link: false linkTarget: -1 } 1 => Phuxtil\SplFileInfo\VirtualSplFileInfo { path: "/tmp/remote_fs" filename: "test.txt" basename: "test.txt" pathname: "/tmp/remote_fs/test.txt" extension: "txt" realPath: "/tmp/remote_fs/test.txt" aTime: 2019-06-16 12:49:22 mTime: 2019-06-16 12:49:41 cTime: 2019-06-16 12:49:41 inode: "10269956" size: "1210" perms: 0644 owner: "0" group: "0" type: "file" writable: true readable: true executable: false file: true dir: false link: false linkTarget: -1 } 2 => Phuxtil\SplFileInfo\VirtualSplFileInfo { path: "/tmp/remote_fs" filename: "test_link.txt" basename: "test_link.txt" pathname: "/tmp/remote_fs/test_link.txt" extension: "txt" realPath: "/tmp/remote_fs/test_link.txt" aTime: 2019-06-16 12:49:22 mTime: 2019-06-16 12:49:41 cTime: 2019-06-16 12:49:41 inode: "10269956" size: "1210" perms: 0644 owner: "0" group: "0" type: "file" writable: true readable: true executable: false file: true dir: false link: false linkTarget: -1 } ]
The result is an array containing VirtualSplFileInfo
objects which are compatible with \SplFileInfo
.
echo $results[0]->getPathname(); # /tmp/remote_fs echo $results[1]->isReadable(); # true echo $results[2]->getSize(); # 1210
TDD
See tests
for details.