Home
last modified time | relevance | path

Searched refs:dirPath (Results 1 – 6 of 6) sorted by relevance

/plugin/fedauth/classes/adm/
H A Dfa_restore.adm.class.php48 * @param string $dirPath directory path to delete
50 function _deleteDir($dirPath) { argument
51 if (! is_dir($dirPath)) {
54 if (substr($dirPath, strlen($dirPath) - 1, 1) != '/') {
55 $dirPath .= '/';
57 $files = glob($dirPath . '*', GLOB_MARK);
65 rmdir($dirPath);
/plugin/dx/src/
H A DStandardize.php99 $dirPath = dirname($filePath);
100 if (file_exists($dirPath) && is_dir($dirPath)) {
104 if (!mkdir($dirPath, 0755, true) && !is_dir($dirPath)) {
105 throw new RuntimeException(sprintf('Directory "%s" was not created', $dirPath));
/plugin/combo/ComboStrap/
H A DLocalFileSystem.php111 public function createDirectory(Path $dirPath): Path argument
113 $result = mkdir($dirPath->toAbsolutePath()->toAbsoluteId(), $mode = 0770, $recursive = true);
115 throw new ExceptionCompile("Unable to create the directory path ($dirPath)");
117 return $dirPath;
H A DWikiFileSystem.php91 * @param WikiPath $dirPath
95 public function createDirectory(Path $dirPath) argument
97 return FileSystems::createDirectory($dirPath->toLocalPath());
H A DFileSystems.php126 public static function createDirectory(Path $dirPath) argument
128 $scheme = $dirPath->getScheme();
131 return LocalFileSystem::getOrCreate()->createDirectory($dirPath);
133 return WikiFileSystem::getOrCreate()->createDirectory($dirPath);
/plugin/archivegenerator/
H A Dadmin.php263 $dirPath = $this->base . $directory . '/.keep';
264 $archive->addData($dirPath, '');