1 | <?php |
||
9 | class LocalFileSystem extends FileSystemAbstract |
||
10 | { |
||
11 | 70 | protected function dirExistsRaw(string $path): bool |
|
15 | |||
16 | 35 | protected function linkExistsRaw(string $path): bool |
|
20 | |||
21 | 38 | protected function fileExistsRaw(string $path): bool |
|
25 | |||
26 | 1 | protected function getFileCreationTimestampRaw(string $path): int |
|
30 | |||
31 | 8 | protected function readFileRaw(string $path): string |
|
35 | |||
36 | 4 | protected function writeFileRaw(string $path, string $content) |
|
40 | |||
41 | 4 | protected function copyFileRaw(string $sourcePath, string $destinationPath) |
|
45 | |||
46 | 2 | protected function deleteFileRaw(string $path) |
|
50 | |||
51 | 3 | protected function createLinkRaw(string $path, string $targetPath) |
|
55 | |||
56 | 7 | protected function getLinkTargetRaw(string $path): string |
|
60 | |||
61 | 5 | public function createDirRaw(string $path) |
|
67 | |||
68 | 70 | public function deleteDirRaw(string $path) |
|
83 | |||
84 | /** |
||
85 | * @return string[] The array with the file and dir names |
||
86 | */ |
||
87 | 5 | public function readDirRaw(string $path): array |
|
98 | } |
||
99 |