likeajohny/php-fs

Tools to help you get around the filesystem with PHP.

2.0.5 2023-11-23 08:05 UTC

This package is auto-updated.

Last update: 2025-07-05 02:51:59 UTC


README

Very basic tools to help you get around the filesystem with PHP.

This package is under active development.
If you have any problems, suggestions or wishes, feel free to create an issue to let me know!

Install

composer require likeajohny/php-fs

Functions

  • Directory
    • create
    • exists
    • remove
    • empty
    • move
    • copy
    • list
  • File
    • create
    • exists
    • write
    • append
    • prepend
    • read
    • remove
    • copy
    • move

File Usage Examples

Create A New File

  • The directory to create the file in has to exist.
PhpFs\File::create('./filepath/cool-story-bro.txt');

Write Content To A File

  • Writes contents to a given file
  • Overrides pre-existing content in the file
PhpFs\File::write('./filepath/cool-story-bro.txt', 'Let me tell you a story!');

Append To A File

  • Appends content to a given file
PhpFs\File::append('./filepath/cool-story-bro.txt', "\nAnd the story goes as follows:");

Prepend To A File

  • Prepends content to a given file
PhpFs\File::prepend('./filepath/cool-story-bro.txt', "The stories foreword\n");

Directory Usage Examples

Remove A Directory

  • always recursive
PhpFs\Directory::remove('./path/to/directory');

Empty A Directory

  • always recursive
PhpFs\Directory::empty('./path/to/directory');