ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
FilesystemUtils.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the Assetic package, an OpenSky project.
5  *
6  * (c) 2010-2014 OpenSky Project Inc
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11 
12 namespace Assetic\Util;
13 
20 {
24  public static function removeDirectory($directory)
25  {
26  $inner = new \RecursiveDirectoryIterator($directory, \FilesystemIterator::SKIP_DOTS);
27  $outer = new \RecursiveIteratorIterator($inner, \RecursiveIteratorIterator::SELF_FIRST);
28 
29  // remove the files first
30  foreach ($outer as $file) {
31  if ($file->isFile()) {
32  unlink($file);
33  }
34  }
35 
36  // remove the sub-directories next
37  $files = iterator_to_array($outer);
38  foreach (array_reverse($files) as $file) {
40  if ($file->isDir()) {
41  rmdir($file);
42  }
43  }
44 
45  // finally the directory itself
46  rmdir($directory);
47  }
48 
60  public static function createThrowAwayDirectory($prefix)
61  {
62  $directory = self::getTemporaryDirectory().DIRECTORY_SEPARATOR.uniqid('assetic_'.$prefix);
63  mkdir($directory);
64 
65  return $directory;
66  }
67 
75  public static function createTemporaryFile($prefix)
76  {
77  return tempnam(self::getTemporaryDirectory(), 'assetic_'.$prefix);
78  }
79 
80  public static function getTemporaryDirectory()
81  {
82  return realpath(sys_get_temp_dir());
83  }
84 }
$files
Definition: add-vimline.php:18
static createTemporaryFile($prefix)
Creates a temporary file.
static createThrowAwayDirectory($prefix)
Creates a throw-away directory.
if(!file_exists("$old.txt")) if($old===$new) if(file_exists("$new.txt")) $file
Filesystem utilities.