2017 © Pedro Peláez
 

library io

simple agnostic package for IO releted (files, dir, etc..)

image

padosoft/io

simple agnostic package for IO releted (files, dir, etc..)

  • Saturday, September 24, 2016
  • by lopadova
  • Repository
  • 2 Watchers
  • 1 Stars
  • 246 Installations
  • PHP
  • 3 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 12 Versions
  • 4 % Grown

The README.md

Simple agnostic package for IO related (files, dir, etc..)

Agnostic Latest Version on Packagist Software License Build Status Quality Score Total Downloads SensioLabsInsight, (*1)

This is a simple agnostic package with few or zero dipendencies. This is ideal to provides support and helpers for creating packeges without include many and many dipendencies., (*2)

Requires

  • php: >=7.0.0

Installation

You can install the package via composer: ``` bash $ composer require padosoft/io, (*3)


## Usage Then here's an example of how to use `FileHelper` class: Add a use statement `use Padosoft\Io\FileHelper;` ```php <?php if(FileHelper::checkDirExistOrCreate('public/upload', '0755')){ echo 'dir already exists or now created!'; }else{ echo 'OOPS! dir not exists and unable to create it!'; } //get all files in public/upload/ $arrFiles = FileHelper::findFiles('public/upload/*'); var_dump($arrFiles); //get all jpeg in public/upload/ $arrFiles = FileHelper::findFiles('public/upload/*.jpg'); var_dump($arrFiles); //check if the path ends with slash if(DirHelper::endsWithSlash('public/upload')){ echo 'add a final slash...'; $path = DirHelper::addFinalSlash('public/upload'); echo $path; }else{ echo 'path already finish with slash.'; } //get all directories in public/upload/ $arrFolders = DirHelper::findDirs('public/upload/*'); var_dump($arrFolders); //truncate log to last 2000 bytes without truncate line echo 'before:'.PHP_EOL; echo file_get_contents('log.csv'); if(LogHelper::ftruncatestart('log.csv', 2000)){ echo 'after:'.PHP_EOL; echo file_get_contents('log.csv'); }

List of functions

DirHelper

  • isDirSafe
  • checkDirExistOrCreate
  • addFinalSlash
  • addFinalSlashToAllPaths
  • endsWithSlash
  • endsWithStar
  • endsWith
  • startsWithSlash
  • startsWith
  • findDirs
  • delete
  • removeFinalSlash
  • removeFinalSlashToAllPaths
  • removeStartSlash
  • removeStartSlashToAllPaths
  • copy
  • isLocal
  • isAbsoluteUnix
  • isAbsoluteWindows
  • isAbsoluteWindowsRoot
  • isAbsolute
  • isRelative
  • join
  • njoin
  • canonicalize
  • isDirEmpty : Check if a directory is empty in efficent way. Check hidden files too.
  • isDotDir : Check if an antry is linux dot dir (i.e.: . or .. )
  • isReadable : Check if a path is a dir and is readable.

FileHelper

  • arrMimeType
  • getPathinfoPart
  • getDirname
  • getFilename
  • getFilenameWithoutExtension
  • getFilenameExtension
  • hasExtension
  • variable2Array
  • changeExtension
  • unlinkSafe
  • fileExistsSafe
  • findFiles
  • filePutContentsSafe
  • getMimeType
  • getMimeTypeByFinfo
  • getMimeTypeByMimeContentType
  • isReadable : Check if a path is a file and is readable.
  • filPerms : Gets file or dir permissions in octal form ('0777') or not ('644').

LogHelper

  • ftruncatestart

Change log

Please see CHANGELOG for more information what has changed recently., (*4)

Testing

bash $ composer test, (*5)

Contributing

Please see CONTRIBUTING for details., (*6)

Security

If you discover any security related issues, please email instead of using the issue tracker., (*7)

Credits

About Padosoft

Padosoft (https://www.padosoft.com) is a software house based in Florence, Italy. Specialized in E-commerce and web sites., (*8)

License

The MIT License (MIT). Please see License File for more information., (*9)

The Versions

24/09 2016

dev-master

9999999-dev https://github.com/padosoft/io

simple agnostic package for IO releted (files, dir, etc..)

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

The Development Requires

file directory io path padosoft

24/09 2016

1.8.0

1.8.0.0 https://github.com/padosoft/io

simple agnostic package for IO releted (files, dir, etc..)

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

The Development Requires

file directory io path padosoft

17/09 2016

1.7.0

1.7.0.0 https://github.com/padosoft/io

simple agnostic package for IO releted (files, dir, etc..)

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

The Development Requires

file directory io path padosoft

12/09 2016

1.6.1

1.6.1.0 https://github.com/padosoft/io

simple agnostic package for IO releted (files, dir, etc..)

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

The Development Requires

file directory io path padosoft

11/09 2016

1.6.0

1.6.0.0 https://github.com/padosoft/io

simple agnostic package for IO releted (files, dir, etc..)

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

The Development Requires

file directory io path padosoft

07/09 2016

1.5.0

1.5.0.0 https://github.com/padosoft/io

simple agnostic package for IO releted (files, dir, etc..)

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

The Development Requires

file directory io path padosoft

30/08 2016

1.4.0

1.4.0.0 https://github.com/padosoft/io

simple agnostic package for IO releted (files, dir, etc..)

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

The Development Requires

file directory io path padosoft

28/08 2016

1.3.1

1.3.1.0 https://github.com/padosoft/io

simple agnostic package for IO releted (files, dir, etc..)

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

The Development Requires

file directory io path padosoft

28/08 2016

1.3.0

1.3.0.0 https://github.com/padosoft/io

simple agnostic package for IO releted (files, dir, etc..)

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

The Development Requires

file directory io path padosoft

25/08 2016

1.2.0

1.2.0.0 https://github.com/padosoft/io

simple agnostic package for IO releted (files, dir, etc..)

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

The Development Requires

file directory io path padosoft

24/08 2016

1.1.0

1.1.0.0 https://github.com/padosoft/io

simple agnostic package for IO releted (files, dir, etc..)

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

The Development Requires

file directory io path padosoft

18/08 2016

1.0.0

1.0.0.0 https://github.com/padosoft/io

simple agnostic package for IO releted (files, dir, etc..)

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

The Development Requires

file directory io path padosoft