The Filesystem Component
Warning: You are browsing the documentation for Symfony 2.x, which is no longer maintained.
Read the updated version of this page for Symfony 7.1 (the current stable version).
The Filesystem component provides basic utilities for the filesystem.
Tip
The lock handler feature was introduced in symfony 2.6. See the documentation for more information.
Installation
1
$ composer require symfony/filesystem
Alternatively, you can clone the https://github.com/symfony/filesystem repository.
Note
If you install this component outside of a Symfony application, you must
require the vendor/autoload.php
file in your code to enable the class
autoloading mechanism provided by Composer. Read
this article for more details.
Usage
The Filesystem class is the unique endpoint for filesystem operations:
1 2 3 4 5 6 7 8 9 10
use Symfony\Component\Filesystem\Filesystem;
use Symfony\Component\Filesystem\Exception\IOExceptionInterface;
$fileSystem = new Filesystem();
try {
$fileSystem->mkdir(sys_get_temp_dir().'/'.random_int(0, 1000));
} catch (IOExceptionInterface $exception) {
echo "An error occurred while creating your directory at ".$exception->getPath();
}
Note
Methods mkdir(), exists(), touch(), remove(), chmod(), chown() and chgrp() can receive a string, an array or any object implementing Traversable as the target argument.
mkdir
mkdir() creates a directory recursively. On POSIX filesystems, directories are created with a default mode value `0777`. You can use the second argument to set your own mode:
1
$fileSystem->mkdir('/tmp/photos', 0700);
Note
You can pass an array or any Traversable object as the first argument.
Note
This function ignores already existing directories.
exists
exists() checks for the
presence of one or more files or directories and returns false
if any of
them is missing:
1 2 3 4 5 6
// if this absolute directory exists, returns true
$fileSystem->exists('/tmp/photos');
// if rabbit.jpg exists and bottle.png does not exist, returns false
// non-absolute paths are relative to the directory where the running PHP script is stored
$fileSystem->exists(array('rabbit.jpg', 'bottle.png'));
Note
You can pass an array or any Traversable object as the first argument.
copy
copy() makes a copy of a single file (use mirror() to copy directories). If the target already exists, the file is copied only if the source modification date is later than the target. This behavior can be overridden by the third boolean argument:
1 2 3 4 5
// works only if image-ICC has been modified after image.jpg
$fileSystem->copy('image-ICC.jpg', 'image.jpg');
// image.jpg will be overridden
$fileSystem->copy('image-ICC.jpg', 'image.jpg', true);
touch
touch() sets access and modification time for a file. The current time is used by default. You can set your own with the second argument. The third argument is the access time:
1 2 3 4 5 6
// sets modification time to the current timestamp
$fileSystem->touch('file.txt');
// sets modification time 10 seconds in the future
$fileSystem->touch('file.txt', time() + 10);
// sets access time 10 seconds in the past
$fileSystem->touch('file.txt', time(), time() - 10);
Note
You can pass an array or any Traversable object as the first argument.
chown
chown() changes the owner of a file. The third argument is a boolean recursive option:
1 2 3 4
// sets the owner of the lolcat video to www-data
$fileSystem->chown('lolcat.mp4', 'www-data');
// changes the owner of the video directory recursively
$fileSystem->chown('/video', 'www-data', true);
Note
You can pass an array or any Traversable object as the first argument.
chgrp
chgrp() changes the group of a file. The third argument is a boolean recursive option:
1 2 3 4
// sets the group of the lolcat video to nginx
$fileSystem->chgrp('lolcat.mp4', 'nginx');
// changes the group of the video directory recursively
$fileSystem->chgrp('/video', 'nginx', true);
Note
You can pass an array or any Traversable object as the first argument.
chmod
chmod() changes the mode or permissions of a file. The fourth argument is a boolean recursive option:
1 2 3 4
// sets the mode of the video to 0600
$fileSystem->chmod('video.ogg', 0600);
// changes the mod of the src directory recursively
$fileSystem->chmod('src', 0700, 0000, true);
Note
You can pass an array or any Traversable object as the first argument.
remove
remove() deletes files, directories and symlinks:
1
$fileSystem->remove(array('symlink', '/path/to/directory', 'activity.log'));
Note
You can pass an array or any Traversable object as the first argument.
rename
rename() changes the name of a single file or directory:
1 2 3 4
// renames a file
$fileSystem->rename('/tmp/processed_video.ogg', '/path/to/store/video_647.ogg');
// renames a directory
$fileSystem->rename('/tmp/files', '/path/to/store/files');
symlink
symlink() creates a symbolic link from the target to the destination. If the filesystem does not support symbolic links, a third boolean argument is available:
1 2 3 4 5
// creates a symbolic link
$fileSystem->symlink('/path/to/source', '/path/to/destination');
// duplicates the source directory if the filesystem
// does not support symbolic links
$fileSystem->symlink('/path/to/source', '/path/to/destination', true);
makePathRelative
makePathRelative() takes two absolute paths and returns the relative path from the second path to the first one:
1 2 3 4 5 6 7
// returns '../'
$fileSystem->makePathRelative(
'/var/lib/symfony/src/Symfony/',
'/var/lib/symfony/src/Symfony/Component'
);
// returns 'videos/'
$fileSystem->makePathRelative('/tmp/videos', '/tmp')
mirror
mirror() copies all the contents of the source directory into the target one (use the copy() method to copy single files):
1
$fileSystem->mirror('/path/to/source', '/path/to/target');
isAbsolutePath
isAbsolutePath() returns
true
if the given path is absolute, false
otherwise:
1 2 3 4 5 6 7 8
// returns true
$fileSystem->isAbsolutePath('/tmp');
// returns true
$fileSystem->isAbsolutePath('c:\\Windows');
// returns false
$fileSystem->isAbsolutePath('tmp');
// returns false
$fileSystem->isAbsolutePath('../dir');
dumpFile
2.3
The dumpFile()
was introduced in Symfony 2.3.
dumpFile() saves the given contents into a file. It does this in an atomic manner: it writes a temporary file first and then moves it to the new file location when it's finished. This means that the user will always see either the complete old file or complete new file (but never a partially-written file):
1
$fileSystem->dumpFile('file.txt', 'Hello World');
The file.txt
file contains Hello World
now.
Error Handling
Whenever something wrong happens, an exception implementing ExceptionInterface or IOExceptionInterface is thrown.
Note
An IOException is thrown if directory creation fails.