.. index:: single: Filesystem The Filesystem Component ======================== The Filesystem component provides basic utilities for the filesystem. Installation ------------ .. code-block:: terminal $ composer require symfony/filesystem .. include:: /components/require_autoload.rst.inc Usage ----- The :class:`Symfony\\Component\\Filesystem\\Filesystem` class is the unique endpoint for filesystem operations:: use Symfony\Component\Filesystem\Exception\IOExceptionInterface; use Symfony\Component\Filesystem\Filesystem; $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 :method:`Symfony\\Component\\Filesystem\\Filesystem::mkdir`, :method:`Symfony\\Component\\Filesystem\\Filesystem::exists`, :method:`Symfony\\Component\\Filesystem\\Filesystem::touch`, :method:`Symfony\\Component\\Filesystem\\Filesystem::remove`, :method:`Symfony\\Component\\Filesystem\\Filesystem::chmod`, :method:`Symfony\\Component\\Filesystem\\Filesystem::chown` and :method:`Symfony\\Component\\Filesystem\\Filesystem::chgrp` can receive a string, an array or any object implementing :phpclass:`Traversable` as the target argument. ``mkdir`` ~~~~~~~~~ :method:`Symfony\\Component\\Filesystem\\Filesystem::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:: $filesystem->mkdir('/tmp/photos', 0700); .. note:: You can pass an array or any :phpclass:`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 :phpfunction:`umask` function or use the :phpfunction:`chmod` function after the directory has been created. ``exists`` ~~~~~~~~~~ :method:`Symfony\\Component\\Filesystem\\Filesystem::exists` checks for the presence of one or more files or directories and returns ``false`` if any of them is missing:: // 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(['rabbit.jpg', 'bottle.png']); .. note:: You can pass an array or any :phpclass:`Traversable` object as the first argument. ``copy`` ~~~~~~~~ :method:`Symfony\\Component\\Filesystem\\Filesystem::copy` makes a copy of a single file (use :method:`Symfony\\Component\\Filesystem\\Filesystem::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:: // 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`` ~~~~~~~~~ :method:`Symfony\\Component\\Filesystem\\Filesystem::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:: // 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 :phpclass:`Traversable` object as the first argument. ``chown`` ~~~~~~~~~ :method:`Symfony\\Component\\Filesystem\\Filesystem::chown` changes the owner of a file. The third argument is a boolean recursive option:: // 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 :phpclass:`Traversable` object as the first argument. ``chgrp`` ~~~~~~~~~ :method:`Symfony\\Component\\Filesystem\\Filesystem::chgrp` changes the group of a file. The third argument is a boolean recursive option:: // 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 :phpclass:`Traversable` object as the first argument. ``chmod`` ~~~~~~~~~ :method:`Symfony\\Component\\Filesystem\\Filesystem::chmod` changes the mode or permissions of a file. The fourth argument is a boolean recursive option:: // 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 :phpclass:`Traversable` object as the first argument. ``remove`` ~~~~~~~~~~ :method:`Symfony\\Component\\Filesystem\\Filesystem::remove` deletes files, directories and symlinks:: $filesystem->remove(['symlink', '/path/to/directory', 'activity.log']); .. note:: You can pass an array or any :phpclass:`Traversable` object as the first argument. ``rename`` ~~~~~~~~~~ :method:`Symfony\\Component\\Filesystem\\Filesystem::rename` changes the name of a single file or directory:: // 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`` ~~~~~~~~~~~ :method:`Symfony\\Component\\Filesystem\\Filesystem::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:: // 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); ``readlink`` ~~~~~~~~~~~~ :method:`Symfony\\Component\\Filesystem\\Filesystem::readlink` read links targets. PHP's :phpfunction:`readlink` function returns the target of a symbolic link. However, its behavior is completely different under Windows and Unix. On Windows systems, ``readlink()`` resolves recursively the children links of a link until a final target is found. On Unix-based systems ``readlink()`` only resolves the next link. The :method:`Symfony\\Component\\Filesystem\\Filesystem::readlink` method provided by the Filesystem component always behaves in the same way:: // returns the next direct target of the link without considering the existence of the target $filesystem->readlink('/path/to/link'); // returns its absolute fully resolved final version of the target (if there are nested links, they are resolved) $filesystem->readlink('/path/to/link', true); Its behavior is the following:: 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`` ~~~~~~~~~~~~~~~~~~~~ :method:`Symfony\\Component\\Filesystem\\Filesystem::makePathRelative` takes two absolute paths and returns the relative path from the second path to the first one:: // returns '../' $filesystem->makePathRelative( '/var/lib/symfony/src/Symfony/', '/var/lib/symfony/src/Symfony/Component' ); // returns 'videos/' $filesystem->makePathRelative('/tmp/videos', '/tmp') ``mirror`` ~~~~~~~~~~ :method:`Symfony\\Component\\Filesystem\\Filesystem::mirror` copies all the contents of the source directory into the target one (use the :method:`Symfony\\Component\\Filesystem\\Filesystem::copy` method to copy single files):: $filesystem->mirror('/path/to/source', '/path/to/target'); ``isAbsolutePath`` ~~~~~~~~~~~~~~~~~~ :method:`Symfony\\Component\\Filesystem\\Filesystem::isAbsolutePath` returns ``true`` if the given path is absolute, ``false`` otherwise:: // returns true $filesystem->isAbsolutePath('/tmp'); // returns true $filesystem->isAbsolutePath('c:\\Windows'); // returns false $filesystem->isAbsolutePath('tmp'); // returns false $filesystem->isAbsolutePath('../dir'); ``tempnam`` ~~~~~~~~~~~ :method:`Symfony\\Component\\Filesystem\\Filesystem::tempnam` creates a temporary file with a unique filename, and returns its path, or throw an exception on failure:: // returns a path like : /tmp/prefix_wyjgtF $filesystem->tempnam('/tmp', 'prefix_'); // returns a path like : /tmp/prefix_wyjgtF.png $filesystem->tempnam('/tmp', 'prefix_', '.png'); .. versionadded:: 5.1 The option to set a suffix in ``tempnam()`` was introduced in Symfony 5.1. ``dumpFile`` ~~~~~~~~~~~~ :method:`Symfony\\Component\\Filesystem\\Filesystem::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):: $filesystem->dumpFile('file.txt', 'Hello World'); The ``file.txt`` file contains ``Hello World`` now. ``appendToFile`` ~~~~~~~~~~~~~~~~ :method:`Symfony\\Component\\Filesystem\\Filesystem::appendToFile` adds new contents at the end of some file:: $filesystem->appendToFile('logs.txt', 'Email sent to user@example.com'); 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 :class:`Symfony\\Component\\Filesystem\\Exception\\ExceptionInterface` or :class:`Symfony\\Component\\Filesystem\\Exception\\IOExceptionInterface` is thrown. .. note:: An :class:`Symfony\\Component\\Filesystem\\Exception\\IOException` is thrown if directory creation fails. .. _`umask`: https://en.wikipedia.org/wiki/Umask