mscherer 44a78128e7 Fix CS for easier 3.x/4.x comparison/merge. 6 years ago
..
File.php 01f4a69915 Updated links from book.cakephp.org/3.0/ to book.cakephp.org/3/ 6 years ago
Folder.php 44a78128e7 Fix CS for easier 3.x/4.x comparison/merge. 6 years ago
LICENSE.txt c61ab5ee95 Use HTTPS for the cakefoundation.org URL 8 years ago
README.md 01f4a69915 Updated links from book.cakephp.org/3.0/ to book.cakephp.org/3/ 6 years ago
composer.json 8400540c75 Add missing core dependencies and bump versions. 8 years ago

README.md

Total Downloads License

CakePHP Filesystem Library

The Folder and File utilities are convenience classes to help you read from and write/append to files; list files within a folder and other common directory related tasks.

Basic Usage

Create a folder instance and search for all the .ctp files within it:

use Cake\Filesystem\Folder;

$dir = new Folder('/path/to/folder');
$files = $dir->find('.*\.ctp');

Now you can loop through the files and read from or write/append to the contents or simply delete the file:

foreach ($files as $file) {
    $file = new File($dir->pwd() . DIRECTORY_SEPARATOR . $file);
    $contents = $file->read();
    // $file->write('I am overwriting the contents of this file');
    // $file->append('I am adding to the bottom of this file.');
    // $file->delete(); // I am deleting this file
    $file->close(); // Be sure to close the file when you're done
}

Documentation

Please make sure you check the official documentation