phore/filesystem

Acces files layer

v1.1.0 2024-02-09 00:37 UTC

This package is auto-updated.

Last update: 2024-05-09 18:21:59 UTC


README

Actions Status

File access functions

  • Working with sub-paths
  • Checking symbolic links

Installation

compser require phore/filesystem

General usage

echo phore_uri("/tmp/some.file")->withDirName();

will result in

/tmp

Subpath

echo phore_uri("/tmp")->withSubPath("./some/other/file")
/tmp/some/other/file

Assertions

phore_uri("/tmp")->assertIsFile()->assertIsWritable();

Reading YAML

phore_uri("/tmp/somefile.yml")->assertFile()->get_yaml();

Tempoary Files

Will be unlinked when object destructs.

$file = new PhoreTempFile();