This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Filesystem
2012-04-10 10:15:30 +02:00
..
Tests [Filesystem] Written missing tests. 2012-04-10 10:15:30 +02:00
composer.json Removed version field 2012-02-27 09:59:20 +01:00
Filesystem.php [Filesystem] Added silence operator to rename(). 2012-04-10 10:15:18 +02:00
LICENSE Added LICENSE 2011-12-22 19:42:52 +01:00
README.md Added README 2011-12-22 19:43:09 +01:00

Filesystem Component

Filesystem provides basic utility to manipulate the file system:

use Symfony\Component\Filesystem\Filesystem;

$filesystem = new Filesystem();

$filesystem->copy($originFile, $targetFile, $override = false);

$filesystem->mkdir($dirs, $mode = 0777);

$filesystem->touch($files);

$filesystem->remove($files);

$filesystem->chmod($files, $mode, $umask = 0000);

$filesystem->rename($origin, $target);

$filesystem->symlink($originDir, $targetDir, $copyOnWindows = false);

$filesystem->makePathRelative($endPath, $startPath);

$filesystem->mirror($originDir, $targetDir, \Traversable $iterator = null, $options = array());

$filesystem->isAbsolutePath($file);