Daniel ab1334c0cf the whole shebang | 10 年 前 | |
---|---|---|
.. | ||
Exception | 10 年 前 | |
Tests | 10 年 前 | |
.gitignore | 10 年 前 | |
CHANGELOG.md | 10 年 前 | |
Filesystem.php | 10 年 前 | |
LICENSE | 10 年 前 | |
README.md | 10 年 前 | |
composer.json | 10 年 前 | |
phpunit.xml.dist | 10 年 前 |
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->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);
You can run the unit tests with the following command:
$ cd path/to/Symfony/Component/Filesystem/
$ composer.phar install --dev
$ phpunit