lump1k/directory

There is no license information available for the latest version (1.0.0) of this package.

Directory Helper

1.0.0 2023-01-21 05:36 UTC

This package is auto-updated.

Last update: 2025-06-21 11:17:52 UTC


README

How to install?

composer require lump1k/directory

How to use?

use \Lump1k\Directory\Helper as DirHelper;

$dir = __DIR__ . DIRECTORY_SEPARATOR . 'test';

$isEmpty = DirHelper::isEmpty($dir);

$files = DirHelper::getFiles($dir);

DirHelper::delete($dir);