Download the PHP package originphp/filesystem without Composer
On this page you can find all versions of the php package originphp/filesystem. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download originphp/filesystem
More information about originphp/filesystem
Files in originphp/filesystem
Package filesystem
Short Description OriginPHP Filesystem
License MIT
Homepage https://www.originphp.com
Informations about the package filesystem
Filesystem
Filesystem includes the File
and Folder
classes for working with your filesystem.
Installation
To install this package
File
he file utility wraps some important functions in an easy to use and predictable way.
To use the File utility add the following to the top of your file.
Info
As of 2.0 path was renamed to directory and filename was renamed to name
To get information about a file
Which will return an array like this
Read
To read a file
Write
To write to a file
Append
To append contents to a file
Delete
To delete a file
Exists
To check if file exists
Tmp
When needing to work with temporary files, use tmp, this will create the file, put the contents and return to you the name of the file with path.
Copy
To copy a file
Rename
To rename a file
Move
To move a file
Permissions
Get Permissions
To get the permissions of a file
Changing Permissions (chmod)
To change the permissions of a file.
Getting the owner of the file
Changing Ownership (chown)
To change the ownership of a file
Getting the group
To get the group that the file belongs to.
Changing Group (chgrp)
To change the group that the file belongs to.
Folder
The folder utility helps you work with folders on your file system.
To use the Folder utility add the following to the top of your file.
Create
To create a folder
To create a folder recursively
To set the permissions on the newly created folder
Delete
To delete a folder
To delete a folder recursively, including all files and sub directories.
Exists
To check if a directory exists
List
As of version 2.0 released 26.09.20 list results are different, path now includes the filename.
To list all contents of a directory
This will return an array of arrays of FileObjects
When the FileObject
is converted to a string it will become a path e.g. /var/www/my_directory/foo.txt
.
You can also get the listing recursively
To include directories in the results
Copy
To copy a directory
Rename
To rename a directory
Move
To move a directory
Permissions
Get Permissions
To get the permissions of a directory.
Changing Permissions (chmod)
To change the permissions of a directory
Getting the owner of a directory
Changing Ownership (chown)
To change the ownership of a directory
Getting the group
To get the group that a directory belongs to.
Changing Group (chgrp)
To change the group that the folder belongs to.