Home
last modified time | relevance | path

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

/template/strap/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);