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
2015-04-10 09:23:38 +02:00
..
Exception Merge branch '2.3' into 2.5 2014-12-22 17:29:52 +01:00
Tests Merge branch '2.6' into 2.7 2015-03-12 15:31:07 +01:00
.gitignore Added missing files .gitignore 2013-07-21 14:12:18 +02:00
CHANGELOG.md [Filesystem] Added a lock handler 2014-09-12 16:19:59 +02:00
composer.json removed 3.0 constraints from 2.7 composer files 2015-04-10 09:23:38 +02:00
Filesystem.php Merge branch '2.6' into 2.7 2015-03-22 17:57:18 +01:00
LICENSE Updated copyright to 2015 2015-01-01 13:56:52 +01:00
LockHandler.php [Filesystem] fix lock file permissions 2014-11-30 11:30:45 +01:00
phpunit.xml.dist [2.3] require-dev PHPUnit bridge 2015-02-24 11:24:26 +01:00
README.md renamed composer.phar to composer to be consistent with the Symfony docs 2015-02-08 08:41:14 +01:00

Filesystem Component

Filesystem provides basic utility to manipulate the file system:

<?php

use Symfony\Component\Filesystem\Filesystem;

$filesystem = new Filesystem();

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

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

$filesystem->touch($files, $time = null, $atime = null);

$filesystem->remove($files);

$filesystem->exists($files);

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

$filesystem->chown($files, $user, $recursive = false);

$filesystem->chgrp($files, $group, $recursive = false);

$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);

Resources

You can run the unit tests with the following command:

$ cd path/to/Symfony/Component/Filesystem/
$ composer install
$ phpunit