An open API service indexing awesome lists of open source software.

https://github.com/digitaledgeit/php-filesystem

Filesystem functions (similar to Symfony... but simplifies copying/moving/deleting search results)
https://github.com/digitaledgeit/php-filesystem

Last synced: 9 months ago
JSON representation

Filesystem functions (similar to Symfony... but simplifies copying/moving/deleting search results)

Awesome Lists containing this project

README

          

# filesystem

Filesystem functions (similar to Symfony... but simplifies copying/moving/deleting search results).

**Note:** Symfony's `Filesystem.remove()` now takes a `Traversable` and can be used with Symfony's `Finder` results. If this is your use case, then please use Symfony instead.

## Installation

composer require digitaledgeit/filesystem

## Usage

files()
->named('/\.cache/')
->modified('<', strtotime('15min ago'))
->remove()
;