PHP Classes

File: README.md

Recommend this page to a friend!
  Classes of Josantonius   PHP File   README.md   Download  
File: README.md
Role: Documentation
Content type: text/markdown
Description: Documentation
Class: PHP File
Manipulate files and directories
Author: By
Last change: Updated to 1.1.7 version
Date: 6 years ago
Size: 7,179 bytes
 

Contents

Class file image Download

PHP File library

Latest Stable Version Latest Unstable Version License Codacy Badge Total Downloads Travis PSR2 PSR4 CodeCov

Versión en español

PHP library for file management.

Requirements

This library is supported by PHP versions 5.6 or higher and is compatible with HHVM versions 3.0 or higher.

Installation

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:

Download File.php:

$ wget https://raw.githubusercontent.com/Josantonius/PHP-File/master/src/File.php

Available Methods

Available methods in this library:

- Check if a file exists in a path or url:

File::exists($file);

| Attribute | Description | Type | Required | Default | --- | --- | --- | --- | --- | | $file | Path or file url. | string | Yes | |

# Return (boolean)

- Delete file if exists:

File::delete($file);

| Attribute | Description | Type | Required | Default | --- | --- | --- | --- | --- | | $file | File path. | string | Yes | |

# Return (boolean)

- Create directory if not exists:

File::createDir($path);

| Attribute | Description | Type | Required | Default | --- | --- | --- | --- | --- | | $path | Path where to create directory. | string | Yes | |

# Return (boolean)

- Copy directory recursively:

File::copyDirRecursively($from, $to);

| Attribute | Description | Type | Required | Default | --- | --- | --- | --- | --- | | $from| Path from copy. | string | Yes | | | $to| Path to copy. | string | Yes | |

# Return (boolean)

- Delete empty directory:

File::deleteEmptyDir($path);

| Attribute | Description | Type | Required | Default | --- | --- | --- | --- | --- | | $path | Path to delete. | string | Yes | |

# Return (boolean)

- Delete directory recursively:

File::deleteDirRecursively($path);

| Attribute | Description | Type | Required | Default | --- | --- | --- | --- | --- | | $path | Path to delete. | string | Yes | |

# Return (boolean)

- Get files from directory:

File::getFilesFromDir($path);

| Attribute | Description | Type | Required | Default | --- | --- | --- | --- | --- | | $path | Path where get file paths. | string | Yes | |

# Return (boolean)

Quick Start

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;

Usage

Example of use for this library:

- Check if a local file exists:

<?php
File::exists('path/to/file.php');

- Check if a external file exists:

<?php
File::exists('https://raw.githubusercontent.com/Josantonius/PHP-File/master/composer.json');

- Delete a local file:

<?php
File::delete(__DIR__ . '/test.txt');

- Create directory:

<?php
File::createDir(__DIR__ . '/test/');

- Delete empty directory:

<?php
File::deleteEmptyDir(__DIR__ . '/test/');

- Delete directory recursively:

<?php
File::deleteDirRecursively(__DIR__ . '/test/');

- Copy directory recursively:

<?php
File::copyDirRecursively(__DIR__ . '/test/', __DIR__ . '/copy/');

- Get file paths from directory:

<?php
get_class(File::getFilesFromDir(__DIR__));

Tests

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

? TODO

  • [ ] Add new feature.
  • [ ] Improve tests.
  • [ ] Improve documentation.
  • [ ] Refactor code for disabled code style rules. See phpmd.xml and .php_cs.dist.

Contribute

If you would like to help, please take a look at the list of issues or the To Do checklist.

Pull requests

  • Fork and clone.
  • Run the command `composer install` to install the dependencies. This will also install the dev dependencies.
  • Run the command `composer fix` to excute code standard fixers.
  • Run the tests.
  • Create a branch, commit, push and send me a pull request.

Repository

The file structure from this repository was created with PHP-Skeleton.

License

This project is licensed under MIT license. See the LICENSE file for more info.

Copyright

2017 - 2018 Josantonius, josantonius.com

If you find it useful, let me know :wink:

You can contact me on Twitter or through my email.