Skip to content
This repository was archived by the owner on Feb 1, 2020. It is now read-only.

kherge-archive/php-fs-functions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FS Functions

Build Status

I am deprecating this in favor of phine/lib-path.

A collection of file system related functions.

Summary

The library contains a collection of simple file system related functions:

  • 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:

$ 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

About

A collection of file system related functions.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages