Home
last modified time | relevance | path

Searched refs:LocalFileSystem (Results 1 – 5 of 5) sorted by relevance

/plugin/combo/ComboStrap/
H A DFileSystems.php19 case LocalFileSystem::SCHEME:
20 return LocalFileSystem::getOrCreate()->exists($path);
37 case LocalFileSystem::SCHEME:
38 return LocalFileSystem::getOrCreate()->getContent($path);
52 case LocalFileSystem::SCHEME:
54 return LocalFileSystem::getOrCreate()->getModifiedTime($path);
70 case LocalFileSystem::SCHEME:
71 return LocalFileSystem::getOrCreate()->getCreationTime($path);
94 case LocalFileSystem::SCHEME:
95 LocalFileSystem::getOrCreate()->delete($path);
[all …]
H A DLocalFileSystem.php9 class LocalFileSystem implements FileSystem class
16 * @var LocalFileSystem
20 public static function getOrCreate(): LocalFileSystem
23 self::$localFs = new LocalFileSystem();
H A DLocalPath.php38 if (strpos($uri, LocalFileSystem::SCHEME) !== 0) {
95 if (strpos($path, LocalFileSystem::SCHEME.'://') === 0) {
176 return LocalFileSystem::SCHEME;
430 $uri = LocalFileSystem::SCHEME . '://';
H A DWikiFileSystem.php118 $children = LocalFileSystem::getOrCreate()->getChildren($path->toLocalPath(), $type);
/plugin/combo/ComboStrap/Web/
H A DUrl.php17 use ComboStrap\LocalFileSystem; alias
758 case LocalFileSystem::SCHEME: