digitaledgeit/filesystem

Library for the filesystem

0.2.6 2016-03-14 22:54 UTC

This package is not auto-updated.

Last update: 2024-03-13 09:59:39 UTC


README

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

<?php

use deit\filesystem\Finder';

require_once  __DIR__.'/vendor/autoload.php';

//remove all cache files modified more than 15min ago
$files = Finder::create('./data')
    ->files()
    ->named('/\.cache/')
    ->modified('<', strtotime('15min ago'))
    ->remove()
;