Filename-based metadata for your filesystem.

Installs: 41

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/allmarkedup/ffs

v0.1.1 2015-01-08 11:17 UTC

This package is not auto-updated.

Last update: 2025-10-07 08:35:19 UTC


README

Filesystem file finder and filterer with special support for YAML front-matter.

Built on top of the Symfony Finder component.

<?php

use Amu\Ffs\Finder;

$fs = new Finder(__DIR__);
foreach($fs->titleContains('hello') as $item) {
    echo $item->getFilename() . "<br>\n";
}

$fs = new Finder(__DIR__);
foreach($fs->idEquals("12345") as $item) {
    echo $item->getFilename() . "<br>\n";
}