ligne/file-move

Simple file move

Maintainers

Package info

github.com/itsalb3rt/file-move

pkg:composer/ligne/file-move

Statistics

Installs: 18

Dependents: 0

Suggesters: 0

Stars: 3

Open Issues: 0

1.1 2019-11-27 21:45 UTC

This package is auto-updated.

Last update: 2026-03-01 00:29:53 UTC


README

A simple class to move file most easy.

Use

$ composer require ligne/file-move
use Ligne\FileMove;

$file = new FileMove("myfile","files/"); //The final slash is required
$file->save();

Easy! 🎉

Other methods

$file->setFileName();
/** 
* The mime type of the file, if the browser provided this information. 
* An example would be "image/gif". 
* This mime type is however not checked on the PHP side and therefore don't take its value for granted.
 */
$file->getFileType(); 
$file->debugData();
$file->getDirToSave();
$file->getExtension();
$file->getExtensionFromName();
$file->getFileName();
$file->getInputFileName();