jacq/pathsilo

Generates sub-directory paths for files to mitigate the too many files in one directory problem

dev-master 2016-10-06 03:22 UTC

This package is not auto-updated.

Last update: 2024-04-22 12:45:13 UTC


README

Generates filesystem paths. Includes name based paths and date based paths.

The intended use case is to facilitate storage and retrieval of "large" numbers of files by storing them in multiple folders.

Install

Via Composer

$ composer require jacqball/pathsilo

Usage

// Generate path based on key string (key can be anything such as a file name)
$ps = new Jacq\PathSilo\PathSilo();
$path = $ps->getPath('SomeTextString');

// Generate path from date string - dates are not validated, if you pass in 8 digits it will operate
$dps =  new Jacq\PathSilo\DatePathSilo();
$path = $dps->getPath('20160831');

Change log

Please see CHANGELOG for more information what has changed recently.

Testing

$ composer test

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Security

If you discover any security related issues, please email jacqball@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.