library file-system-functions
A collection of file system related functions.
herrera-io/file-system-functions
A collection of file system related functions.
- Friday, November 8, 2013
- by kherge
- Repository
- 0 Watchers
- 1 Stars
- 859 Installations
- PHP
- 2 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 3 Versions
- 0 % Grown
FS Functions
, (*1)
I am deprecating this in favor of phine/lib-path., (*2)
A collection of file system related functions., (*3)
Summary
The library contains a collection of simple file system related functions:, (*4)
-
canonical_path()
- Returns the canonical file path.
-
is_absolute_path()
- Check for an absolute path.
-
is_hidden_path()
- Checks for a hidden path.
Installation
Add it to your list of Composer dependencies:, (*5)
$ composer require herrera-io/file-system-functions=1.*
Usage
<?php
var_export(canonical_path('../../myDir')); // /var/lib/myDir
var_export(canonical_path('../../myDir')); // C:\\Projects\\myDir
var_export(is_absolute_path('../')); // false
var_export(is_absolute_path('C:\\Test\\Path')); // true
var_export(is_hidden_path('/path/to/.hidden')); // true
var_export(is_hidden_path('C:\\Path\\To\\Hidden.txt')); // true