Home
last modified time | relevance | path

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

/plugin/fedauth/classes/adm/
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/
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/asciidocjs/node_modules/jake/lib/utils/
Dfile.js107 let _rmDir = function (dirPath) { argument
108 let dir = path.normalize(dirPath);
201 let dirPath = path.normalize(dir);
202 let paths = dirPath.split(/\/|\\/);
/plugin/doxycode/helper/
Dbuildmanager.php629 * @param String $dirPath Build directory where doxygen is executed.
631 private function deleteTaskDir($dirPath) argument
633 if (! is_dir($dirPath)) {
634 throw new InvalidArgumentException("$dirPath must be a directory");
637 io_rmdir($dirPath, true);
/plugin/dokullm/
H A Dcli.php214 …private function processDirectory($dirPath, $chroma, $host, $port, $tenant, $database, $verbose = … argument
216 $this->info("Processing directory: $dirPath");
220 if (!is_dir($dirPath)) {
221 $this->error("Directory does not exist: $dirPath");
227 new RecursiveDirectoryIterator($dirPath, RecursiveDirectoryIterator::SKIP_DOTS),
242 $this->info("No .txt files found in directory: $dirPath");
/plugin/asciidocjs/node_modules/filelist/
Dindex.js135 _readDir = function (dirPath) { argument
136 var dir = path.normalize(dirPath)
/plugin/archivegenerator/
Dadmin.php263 $dirPath = $this->base . $directory . '/.keep';
264 $archive->addData($dirPath, '');