Download the PHP package alexya-framework/filesystem without Composer

On this page you can find all versions of the php package alexya-framework/filesystem. 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 filesystem

FileSystem

Alexya's filesystem components

Contents

File Operations

Reading/Writing to a file is really easy with the class \Alexya\FileSystem\File.

Instancing File objects

The constructor accepts as parameter the path to the file that will be used for I/O operations, if the file doesn't exist it will throw an exception of type \Alexya\FileSystem\Exceptions\FileDoesntExist.

You can check if a file exists with the method \Alexya\FileSystem\File::exists which accepts as parameter the path to the file and returns true if the path exists and is a file (or false if it doesn't).

To make a file use the method \Alexya\FileSystem\File::make which accepts as parameter the path to the file that will be created and returns an instance of the file object. If the file already exists it will throw an exception of type \Alexya\FileSystem\Exceptions\FileAlreadyExists, however, you can change this behavior with the second parameter that is an integer and tells what to do if the path already exists:

Example:

Or a shorter way:

Once you've instanced the file object you can retrieve information of the file such as permissions and path information and read/write to the file.

File permissions

You can check file permissions with the following methods:

Example:

File information

You can use the followin methods for retrieving file information:

The methods can be accessed statically, but you must send the path to the file as the parameter.

To change the information of a file use the following methods:

Example:

Reading/Writing to a file

Writing to a file is as easy as using any of the following methods:

The \Alexya\FileSystem\File class offers numerous ways for reading from a file, you can use the following methods:

Example:

Directory Operations

The class \Alexya\FileSystem\Directory offers a clean way to interact with directories.

Instancing Directory objects

The constructor accepts as parameter the path to the directory, if the directory doesn't exist it will throw an exception of type \Alexya\FileSystem\Exceptions\DirectoryDoesntExist.

You can check if a directory exists with the method \Alexya\FileSystem\Directory::exists which accepts as parameter the path to the directory and returns true if the path exists and is a directory (or false if it doesn't).

To make a directory use the method \Alexya\FileSystem\Directory::make which accepts as parameter the path to the directory that will be created and returns an instance of the directory object. If the directory already exists it will throw an exception of type \Alexya\FileSystem\Exceptions\DirectoryAlreadyExists, however, you can change this behavior with the second parameter that is an integer and tells what to do if the path already exists:

Example:

Or a shorter way:

Once you've instanced the directory object you can retrieve information of the directory such as files and subdirectories.

Directory files

You can check if a file exists in the directory with the method fileExists, the parameter is the basename of the file (name + extension) and returns true if the file exists (or false if not).

If you want to retrieve a file from the directory use the method getFile, the parameter is the basename of the file (name + extension) and returns a \Alexya\FileSystem\File object of the file. If the file doesn't exists it will throw an exception of type \Alexya\FileSystem\Exceptions\FileDoesntExists, however, you can change this behavior with the second parameter that is an integer and tells what to do if the file doesn't exists:

The method getFiles returns an array of \Alexya\FileSystem\File objects with all files in the directory.

Example:

Directory subdirectories

You can check if a directory exists in the directory with the method directoryExists, the parameter is the name of the directory and returns true if the directory exists (or false if not).

If you want to retrieve a directory from the directory use the method getDirectory, the parameter is the name of the directory and returns a \Alexya\FileSystem\Directory object of the directory. If the directory doesn't exists it will throw an exception of type \Alexya\FileSystem\Exceptions\DirectoryDoesntExists, however, you can change this behavior with the second parameter that is an integer and tells what to do if the directory doesn't exists:

The method getDirectories returns an array of \Alexya\FileSystem\Directory objects with all directories in the directory.

Example:

Directory information

You can use the followin methods for retrieving directory information:

The methods can be accessed statically, but you must send the path to the directory as the parameter.

To change the information of a directory use the following methods:

Example:


All versions of filesystem with dependencies

PHP Build Version
Package Version
Requires php Version >=7.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 alexya-framework/filesystem contains the following files

Loading the files please wait ....