Skip to content

Latest commit

 

History

History
61 lines (37 loc) · 786 Bytes

README.md

File metadata and controls

61 lines (37 loc) · 786 Bytes

phore-filesystem

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();