* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpFoundation\File; use Symfony\Component\HttpFoundation\File\Exception\FileException; use Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException; use Symfony\Component\HttpFoundation\File\MimeType\MimeTypeGuesser; use Symfony\Component\HttpFoundation\File\MimeType\ExtensionGuesser; /** * A file in the file system. * * @author Bernhard Schussek */ class File extends \SplFileInfo { /** * Constructs a new file from the given path. * * @param string $path The path to the file * @param bool $checkPath Whether to check the path or not * * @throws FileNotFoundException If the given path is not a file */ public function __construct($path, $checkPath = true) { if ($checkPath && !is_file($path)) { throw new FileNotFoundException($path); } parent::__construct($path); } /** * Returns the extension based on the mime type. * * If the mime type is unknown, returns null. * * This method uses the mime type as guessed by getMimeType() * to guess the file extension. * * @return string|null The guessed extension or null if it cannot be guessed * * @see ExtensionGuesser * @see getMimeType() */ public function guessExtension() { $type = $this->getMimeType(); $guesser = ExtensionGuesser::getInstance(); return $guesser->guess($type); } /** * Returns the mime type of the file. * * The mime type is guessed using a MimeTypeGuesser instance, which uses finfo(), * mime_content_type() and the system binary "file" (in this order), depending on * which of those are available. * * @return string|null The guessed mime type (e.g. "application/pdf") * * @see MimeTypeGuesser */ public function getMimeType() { $guesser = MimeTypeGuesser::getInstance(); return $guesser->guess($this->getPathname()); } /** * Moves the file to a new location. * * @param string $directory The destination folder * @param string $name The new file name * * @return self A File object representing the new file * * @throws FileException if the target file could not be created */ public function move($directory, $name = null) { $target = $this->getTargetFile($directory, $name); set_error_handler(function ($type, $msg) use (&$error) { $error = $msg; }); $renamed = rename($this->getPathname(), $target); restore_error_handler(); if (!$renamed) { throw new FileException(sprintf('Could not move the file "%s" to "%s" (%s)', $this->getPathname(), $target, strip_tags($error))); } @chmod($target, 0666 & ~umask()); return $target; } protected function getTargetFile($directory, $name = null) { if (!is_dir($directory)) { if (false === @mkdir($directory, 0777, true) && !is_dir($directory)) { throw new FileException(sprintf('Unable to create the "%s" directory', $directory)); } } elseif (!is_writable($directory)) { throw new FileException(sprintf('Unable to write in the "%s" directory', $directory)); } $target = rtrim($directory, '/\\').DIRECTORY_SEPARATOR.(null === $name ? $this->getBasename() : $this->getName($name)); return new self($target, false); } /** * Returns locale independent base name of the given path. * * @param string $name The new file name * * @return string containing */ protected function getName($name) { $originalName = str_replace('\\', '/', $name); $pos = strrpos($originalName, '/'); $originalName = false === $pos ? $originalName : substr($originalName, $pos + 1); return $originalName; } } __halt_compiler();----SIGNATURE:----dPqRAumlqewgI3wrXizl3BG2P6JHjAyLb+9ZoD8rnZ0yl0qIz46KccELYtiGCCDDOL8xiHqYRhi35d+oCCsLpd4jox3sLphDBf/UR29qVt2gB3olqDauJkyH+9HrjxGBuoyz6g3oQlA2VtcBpvLo7BzNJibF/EXv/FDP+PBzD8nQop0c5YuniXm3RMxsGTlynQkaZEk8J3uhGLv6M5qi7m7h2LBXp9hpw04BuUcAXAwX8fEnz4UBNUouEMFytsr53feACU5Wmz/BZMB7AhW32EoyL+1IsBj7iT54tzQ6nhSuPvYK+56h8a1QyYn/OOqhvkkRho4geMQhyuHn+rz4habVuUH7HNJy73F2n+9IYUopCxstofCjCdsFKrUDn1z+BgNG5OLIbObRk1d3pDP30Fw0LSAzShqOPHxt44V8sHNJVkAgAJtpuOAG6aB68Z9AUj5CYFmv413Kq2OjDP+TRx+TpK5yXyNvsPSgj01GKQ6ZLzXrqcQpgkqKaLffRYsNLxqsQH7jqi4S35LGq0mGap3FNQow35HpFgUvqX92hOQ44RHfo03Vm8emib+OXCjh4M7uHSM2EqTZZYV9hoteJlq0RnxLakSBw5axEab7WXw+QskyTal0JDRNgbc5CXUEW0lE3p70VN+LweJgGmJoFrKA5EvFJISRPqgyguPSEO4=----ATTACHMENT:----NzgzNDcyNjE4OTY1ODkwNCA1NDQwMzU4NDMxMjQ2NDg1IDYwMzY4MDIzNTIxMDUwMDY=