exteon/file-helper

Library implementing various common file operations

1.6.4 2022-04-17 14:49 UTC

This package is auto-updated.

Last update: 2024-09-16 02:05:48 UTC


README

This is a library implementing common filesystem operations.

Requirements

  • PHP 7.2

Usage

Installing with composer

composer require exteon/file-helper

Examples

use Exteon\FileHelper;

// Delete a directory's contents, but preserve the directory itself
FileHelper::rmDir('/foo/bar', false);

// Copy a directory's contents
FileHelper::copyDir('/foo/bar','/foo/baz');

// Create all directories alongside a filesystem path
FileHelper::preparePath('/foo/bar');