Download the PHP package asgard/file without Composer

On this page you can find all versions of the php package asgard/file. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package file

File

Build Status

File is a package to work with the file system and it provides a class to manipulate files as objects.

Installation

If you are working on an Asgard project you don't need to install this library as it is already part of the standard libraries.

composer require asgard/file 0.*

FileSystem

$mode

When a method takes a parameter $mode, you can use different values:

$mode = \Asgard\File\FileSystem::OVERRIDE; #override existing files
$mode = \Asgard\File\FileSystem::RENAME; #rename new files
$mode = \Asgard\File\FileSystem::IGNORE; #ignore existing files
$mode = \Asgard\File\FileSystem::MERGEDIR; #merge directories
$mode = \Asgard\File\FileSystem::MERGEDIR | \Asgard\File\FileSystem::OVERRIDE; #merge directories but override existing files
$mode = \Asgard\File\FileSystem::MERGEDIR | \Asgard\File\FileSystem::RENAME; #merge directories but rename new files
$mode = \Asgard\File\FileSystem::MERGEDIR | \Asgard\File\FileSystem::IGNORE; #merge directories but ignore existing files

It defaults to OVERRIDE.

Methods

Get relative path from a file to another:

\Asgard\File\FileSystem::relativeTo($from, $to);

Get a new filename if the existing one is already taken:

$filename = \Asgard\File\FileSystem::getNewFilename($filename);

Rename a file or directory:

$path = \Asgard\File\FileSystem::rename($src, $dst, $mode=null);

returns the new path if successful, otherwise false.

Copy a file or directory:

$path = \Asgard\File\FileSystem::copy($src, $dst, $mode=null);

returns the new path if successful, otherwise false.

Delete a file or directory:

\Asgard\File\FileSystem::delete($path);

returns true is successful, otherwise false.

Create a new directory:

\Asgard\File\FileSystem::mkdir($path);

returns true is successful, otherwise false.

Write content into a file:

\Asgard\File\FileSystem::write($path, $content, $mode=null, $append=false);

returns true is successful, otherwise false.

File

Instance:

$file = new \Asgard\File\File('/path/to/file.txt');

Set source:

$file->setSrc('/path/to/another/file.txt');

Set file name:

$file->setName('file2.txt');

Get file name:

$file->getName();

Check if the file was just uploaded:

$file->isUploaded();

Get the file size in bytes:

$file->size();

Get the file type:

$file->type();

Get the file extension:

$file->extension();

Check if the file exists:

$file->exists();

Get the file source:

$file->src();

Get the relative path to another file or directory:

$file->relativeTo('/another/file.jpg');

Move the to another directory:

$file->moveToDir('/a/dir/', $mode=null);

Check if the file is in a directory

$file->isIn('/a/dir/');

Check if the file is at a specific path:

$file->isAt('/path/to/file.txt');

Rename the file:

$file->rename('/anoter/path/to/file.txt', $mode=null);

Delete the file:

$file->delete();

Copy the file:

$file->copy('/path/to/copy.txt', $mode=null);

Contributing

Please submit all issues and pull requests to the asgardphp/asgard repository.

License

The Asgard framework is open-sourced software licensed under the MIT license


All versions of file with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package asgard/file contains the following files

Loading the files please wait ....