Lines Matching refs:path

80 	 * @param string $path
83 public function mkdir($path) { argument
84 return $this->getWrapperStorage()->mkdir($path);
90 * @param string $path
93 public function rmdir($path) { argument
94 return $this->getWrapperStorage()->rmdir($path);
100 * @param string $path
103 public function opendir($path) { argument
104 return $this->getWrapperStorage()->opendir($path);
110 * @param string $path
113 public function is_dir($path) { argument
114 return $this->getWrapperStorage()->is_dir($path);
120 * @param string $path
123 public function is_file($path) { argument
124 return $this->getWrapperStorage()->is_file($path);
131 * @param string $path
134 public function stat($path) { argument
135 return $this->getWrapperStorage()->stat($path);
141 * @param string $path
144 public function filetype($path) { argument
145 return $this->getWrapperStorage()->filetype($path);
152 * @param string $path
155 public function filesize($path) { argument
156 return $this->getWrapperStorage()->filesize($path);
162 * @param string $path
165 public function isCreatable($path) { argument
166 return $this->getWrapperStorage()->isCreatable($path);
172 * @param string $path
175 public function isReadable($path) { argument
176 return $this->getWrapperStorage()->isReadable($path);
182 * @param string $path
185 public function isUpdatable($path) { argument
186 return $this->getWrapperStorage()->isUpdatable($path);
192 * @param string $path
195 public function isDeletable($path) { argument
196 return $this->getWrapperStorage()->isDeletable($path);
202 * @param string $path
205 public function isSharable($path) { argument
206 return $this->getWrapperStorage()->isSharable($path);
213 * @param string $path
216 public function getPermissions($path) { argument
217 return $this->getWrapperStorage()->getPermissions($path);
223 * @param string $path
226 public function file_exists($path) { argument
227 return $this->getWrapperStorage()->file_exists($path);
233 * @param string $path
236 public function filemtime($path) { argument
237 return $this->getWrapperStorage()->filemtime($path);
243 * @param string $path
246 public function file_get_contents($path) { argument
247 return $this->getWrapperStorage()->file_get_contents($path);
253 * @param string $path
257 public function file_put_contents($path, $data) { argument
258 return $this->getWrapperStorage()->file_put_contents($path, $data);
264 * @param string $path
267 public function unlink($path) { argument
268 return $this->getWrapperStorage()->unlink($path);
296 * @param string $path
300 public function fopen($path, $mode) { argument
301 return $this->getWrapperStorage()->fopen($path, $mode);
308 * @param string $path
311 public function getMimeType($path) { argument
312 return $this->getWrapperStorage()->getMimeType($path);
319 * @param string $path
323 public function hash($type, $path, $raw = false) { argument
324 return $this->getWrapperStorage()->hash($type, $path, $raw);
330 * @param string $path
333 public function free_space($path) { argument
334 return $this->getWrapperStorage()->free_space($path);
351 * @param string $path
355 public function touch($path, $mtime = null) { argument
356 return $this->getWrapperStorage()->touch($path, $mtime);
363 * @param string $path
366 public function getLocalFile($path) { argument
367 return $this->getWrapperStorage()->getLocalFile($path);
373 * @param string $path
380 public function hasUpdated($path, $time) { argument
381 return $this->getWrapperStorage()->hasUpdated($path, $time);
387 * @param string $path
391 public function getCache($path = '', $storage = null) { argument
395 return $this->getWrapperStorage()->getCache($path, $storage);
401 * @param string $path
405 public function getScanner($path = '', $storage = null) { argument
409 return $this->getWrapperStorage()->getScanner($path, $storage);
416 * @param string $path
419 public function getOwner($path) { argument
420 return $this->getWrapperStorage()->getOwner($path);
426 * @param string $path
430 public function getWatcher($path = '', $storage = null) { argument
434 return $this->getWrapperStorage()->getWatcher($path, $storage);
461 * @param string $path
464 public function getETag($path) { argument
465 return $this->getWrapperStorage()->getETag($path);
516 * @param string $path
519 public function getDirectDownload($path) { argument
520 return $this->getWrapperStorage()->getDirectDownload($path);
542 * @param string $path the path of the target folder
547 public function verifyPath($path, $fileName) { argument
548 $this->getWrapperStorage()->verifyPath($path, $fileName);
579 public function getMetaData($path) { argument
580 return $this->getWrapperStorage()->getMetaData($path);
584 * @param string $path
589 public function acquireLock($path, $type, ILockingProvider $provider) { argument
591 $this->getWrapperStorage()->acquireLock($path, $type, $provider);
596 * @param string $path
600 public function releaseLock($path, $type, ILockingProvider $provider) { argument
602 $this->getWrapperStorage()->releaseLock($path, $type, $provider);
607 * @param string $path
611 public function changeLock($path, $type, ILockingProvider $provider) { argument
613 $this->getWrapperStorage()->changeLock($path, $type, $provider);
624 public function writeStream(string $path, $stream, int $size = null): int { argument
628 return $storage->writeStream($path, $stream, $size);
630 $target = $this->fopen($path, 'w');