Download .zip |
Info | Documentation | View files (14) | Download .zip | Reputation | Support forum | Blog | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2018-04-08 (5 months ago) | Not yet rated by the users | Total: 226 | All time: 7,879 This week: 483 |
Version | License | PHP version | Categories | |||
php-file 1.1.7 | MIT/X Consortium ... | 5.6 | PHP 5, Files and Folders |
Description | Author | |
This class can manipulate files and directories. Currently it can: |
PHP library for file management.
This library is supported by PHP versions 5.6 or higher and is compatible with HHVM versions 3.0 or higher.
The preferred way to install this extension is through Composer.
To install PHP File library, simply:
$ composer require Josantonius/File
The previous command will only install the necessary files, if you prefer to download the entire source code you can use:
$ composer require Josantonius/File --prefer-source
You can also clone the complete repository with Git:
$ git clone https://github.com/Josantonius/PHP-File.git
Or install it manually:
$ wget https://raw.githubusercontent.com/Josantonius/PHP-File/master/src/File.php
Available methods in this library:
File::exists($file);
| Attribute | Description | Type | Required | Default | --- | --- | --- | --- | --- | | $file | Path or file url. | string | Yes | |
# Return (boolean)
File::delete($file);
| Attribute | Description | Type | Required | Default | --- | --- | --- | --- | --- | | $file | File path. | string | Yes | |
# Return (boolean)
File::createDir($path);
| Attribute | Description | Type | Required | Default | --- | --- | --- | --- | --- | | $path | Path where to create directory. | string | Yes | |
# Return (boolean)
File::copyDirRecursively($from, $to);
| Attribute | Description | Type | Required | Default | --- | --- | --- | --- | --- | | $from| Path from copy. | string | Yes | | | $to| Path to copy. | string | Yes | |
# Return (boolean)
File::deleteEmptyDir($path);
| Attribute | Description | Type | Required | Default | --- | --- | --- | --- | --- | | $path | Path to delete. | string | Yes | |
# Return (boolean)
File::deleteDirRecursively($path);
| Attribute | Description | Type | Required | Default | --- | --- | --- | --- | --- | | $path | Path to delete. | string | Yes | |
# Return (boolean)
File::getFilesFromDir($path);
| Attribute | Description | Type | Required | Default | --- | --- | --- | --- | --- | | $path | Path where get file paths. | string | Yes | |
# Return (boolean)
To use this library with Composer:
require __DIR__ . '/vendor/autoload.php';
use Josantonius\File\File;
Or If you installed it manually, use it:
require_once __DIR__ . '/File.php';
use Josantonius\File\File;
Example of use for this library:
<?php
File::exists('path/to/file.php');
<?php
File::exists('https://raw.githubusercontent.com/Josantonius/PHP-File/master/composer.json');
<?php
File::delete(__DIR__ . '/test.txt');
<?php
File::createDir(__DIR__ . '/test/');
<?php
File::deleteEmptyDir(__DIR__ . '/test/');
<?php
File::deleteDirRecursively(__DIR__ . '/test/');
<?php
File::copyDirRecursively(__DIR__ . '/test/', __DIR__ . '/copy/');
<?php
get_class(File::getFilesFromDir(__DIR__));
To run tests you just need composer and to execute the following:
$ git clone https://github.com/Josantonius/PHP-File.git
$ cd PHP-File
$ composer install
Run unit tests with PHPUnit:
$ composer phpunit
Run PSR2 code standard tests with PHPCS:
$ composer phpcs
Run PHP Mess Detector tests to detect inconsistencies in code style:
$ composer phpmd
Run all previous tests:
$ composer tests
If you would like to help, please take a look at the list of issues or the To Do checklist.
Pull requests
composer install
to install the dependencies.
This will also install the dev dependencies.composer fix
to excute code standard fixers.The file structure from this repository was created with PHP-Skeleton.
This project is licensed under MIT license. See the LICENSE file for more info.
2017 - 2018 Josantonius, josantonius.com
If you find it useful, let me know :wink:
Files |
File | Role | Description | ||
---|---|---|---|---|
src (1 file) | ||||
tests (1 file) | ||||
.editorconfig | Data | Auxiliary data | ||
.php_cs.dist | Example | Example script | ||
.travis.yml | Data | Auxiliary data | ||
CHANGELOG.md | Data | Auxiliary data | ||
composer.json | Data | Auxiliary data | ||
CONDUCT.md | Data | Auxiliary data | ||
LICENSE | Lic. | License text | ||
phpcs.xml | Data | Auxiliary data | ||
phpmd.xml | Data | Auxiliary data | ||
phpunit.xml | Data | Auxiliary data | ||
README-ES.md | Doc. | Documentation | ||
README.md | Doc. | Documentation |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
100% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.