axy/fs-real

File system access

0.0.3 2017-04-22 10:58 UTC

This package is auto-updated.

Last update: 2024-04-08 00:56:51 UTC


README

File system access (PHP).

Real implementation of axy/fs/ifs.

Latest Stable Version Minimum PHP Version Build Status Coverage Status License

  • The library does not require any dependencies.
  • Tested on PHP 5.4+, PHP 7, HHVM (on Linux), PHP 5.5 (on Windows).
  • Install: composer require axy/fs-real.
  • License: MIT.

Documentation

It is an implementation of interfaces from axy/fs-ifs. This implementation works with the real file system.

The class FS is implementation of axy\fs\ifs\IFS.

FS::open() returns an instance of RealFile class that is implementation of axy\fs\ifs\IFile.

Messages of the FSError exception are similar build-in functions WARNINGs.

Bugs

The library successfully tested on PHP 5.4, 5.5, 5.5 and 7.0 via travis-ci.org.

For HHVM there are several little bugs:

  • copy() does not throw exception if the source does not exist.
  • $file->getMetaData() for closed $file does not throw an exception.
  • If create a file using createTempFile() and gets meta data using $file->getMetaData() then the file meta->filename does not exists.