The Filesystem Component

The Filesystem Component

The Filesystem component provides basic utilities for the filesystem.

Installation

  1. $ composer require symfony/filesystem

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 Symfony\Component\Filesystem\Filesystem class is the unique endpoint for filesystem operations:

  1. use Symfony\Component\Filesystem\Exception\IOExceptionInterface;
  2. use Symfony\Component\Filesystem\Filesystem;
  3. $filesystem = new Filesystem();
  4. try {
  5. $filesystem->mkdir(sys_get_temp_dir().'/'.random_int(0, 1000));
  6. } catch (IOExceptionInterface $exception) {
  7. echo "An error occurred while creating your directory at ".$exception->getPath();
  8. }

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.

Note

The directory permissions are affected by the current umask. Set the umask for your webserver, use PHP’s umask function or use the chmod function after the directory has been created.

exists

exists() checks for the presence of one or more files or directories and returns false if any of them is missing:

  1. // if this absolute directory exists, returns true
  2. $filesystem->exists('/tmp/photos');
  3. // if rabbit.jpg exists and bottle.png does not exist, returns false
  4. // non-absolute paths are relative to the directory where the running PHP script is stored
  5. $filesystem->exists(['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. // works only if image-ICC has been modified after image.jpg
  2. $filesystem->copy('image-ICC.jpg', 'image.jpg');
  3. // image.jpg will be overridden
  4. $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. // sets modification time to the current timestamp
  2. $filesystem->touch('file.txt');
  3. // sets modification time 10 seconds in the future
  4. $filesystem->touch('file.txt', time() + 10);
  5. // sets access time 10 seconds in the past
  6. $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. // sets the owner of the lolcat video to www-data
  2. $filesystem->chown('lolcat.mp4', 'www-data');
  3. // changes the owner of the video directory recursively
  4. $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. // sets the group of the lolcat video to nginx
  2. $filesystem->chgrp('lolcat.mp4', 'nginx');
  3. // changes the group of the video directory recursively
  4. $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. // sets the mode of the video to 0600
  2. $filesystem->chmod('video.ogg', 0600);
  3. // changes the mode of the src directory recursively
  4. $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(['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. // renames a file
  2. $filesystem->rename('/tmp/processed_video.ogg', '/path/to/store/video_647.ogg');
  3. // renames a directory
  4. $filesystem->rename('/tmp/files', '/path/to/store/files');
  5. // if the target already exists, a third boolean argument is available to overwrite.
  6. $filesystem->rename('/tmp/processed_video2.ogg', '/path/to/store/video_647.ogg', true);

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. // creates a symbolic link
  2. $filesystem->symlink('/path/to/source', '/path/to/destination');
  3. // duplicates the source directory if the filesystem
  4. // does not support symbolic links
  5. $filesystem->symlink('/path/to/source', '/path/to/destination', true);

readlink() read links targets.

The readlink() method provided by the Filesystem component behaves in the same way on all operating systems (unlike PHP’s readlink function):

  1. // returns the next direct target of the link without considering the existence of the target
  2. $filesystem->readlink('/path/to/link');
  3. // returns its absolute fully resolved final version of the target (if there are nested links, they are resolved)
  4. $filesystem->readlink('/path/to/link', true);

Its behavior is the following:

  1. public function readlink($path, $canonicalize = false)
  • When $canonicalize is false:

    • if $path does not exist or is not a link, it returns null.
    • if $path is a link, it returns the next direct target of the link without considering the existence of the target.
  • When $canonicalize is true:

    • if $path does not exist, it returns null.
    • if $path exists, it returns its absolute fully resolved final version.

makePathRelative

makePathRelative() takes two absolute paths and returns the relative path from the second path to the first one:

  1. // returns '../'
  2. $filesystem->makePathRelative(
  3. '/var/lib/symfony/src/Symfony/',
  4. '/var/lib/symfony/src/Symfony/Component'
  5. );
  6. // returns 'videos/'
  7. $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. // returns true
  2. $filesystem->isAbsolutePath('/tmp');
  3. // returns true
  4. $filesystem->isAbsolutePath('c:\\Windows');
  5. // returns false
  6. $filesystem->isAbsolutePath('tmp');
  7. // returns false
  8. $filesystem->isAbsolutePath('../dir');

tempnam

tempnam() creates a temporary file with a unique filename, and returns its path, or throw an exception on failure:

  1. // returns a path like : /tmp/prefix_wyjgtF
  2. $filesystem->tempnam('/tmp', 'prefix_');
  3. // returns a path like : /tmp/prefix_wyjgtF.png
  4. $filesystem->tempnam('/tmp', 'prefix_', '.png');

New in version 5.1: The option to set a suffix in `tempnam() was introduced in Symfony 5.1.

dumpFile

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.

appendToFile

appendToFile() adds new contents at the end of some file:

  1. $filesystem->appendToFile('logs.txt', 'Email sent to [email protected]');

If either the file or its containing directory doesn’t exist, this method creates them before appending the contents.

Error Handling

Whenever something wrong happens, an exception implementing Symfony\Component\Filesystem\Exception\ExceptionInterface or Symfony\Component\Filesystem\Exception\IOExceptionInterface is thrown.

Note

An Symfony\Component\Filesystem\Exception\IOException is thrown if directory creation fails.

This work, including the code samples, is licensed under a Creative Commons BY-SA 3.0 license.