PATH:
var
/
www
/
vhosts
/
sandbox.dos-group.com
/
apilora.sandbox.dos-group.com
/
vendor
/
league
/
flysystem
/
src
<?php namespace League\Flysystem; /** * @deprecated */ class Directory extends Handler { /** * Delete the directory. * * @return bool */ public function delete() { return $this->filesystem->deleteDir($this->path); } /** * List the directory contents. * * @param bool $recursive * * @return array|bool directory contents or false */ public function getContents($recursive = false) { return $this->filesystem->listContents($this->path, $recursive); } }
[-] UnreadableFileException.php
[open]
[-] Config.php
[open]
[-] Filesystem.php
[open]
[-] Exception.php
[open]
[+]
Adapter
[-] SafeStorage.php
[open]
[-] AdapterInterface.php
[open]
[+]
Util
[+]
..
[-] FilesystemNotFoundException.php
[open]
[-] PluginInterface.php
[open]
[-] MountManager.php
[open]
[+]
Plugin
[-] ConfigAwareTrait.php
[open]
[-] FileExistsException.php
[open]
[-] Util.php
[open]
[-] Handler.php
[open]
[-] Directory.php
[open]
[-] File.php
[open]
[-] RootViolationException.php
[open]
[-] ReadInterface.php
[open]
[-] NotSupportedException.php
[open]
[-] FileNotFoundException.php
[open]
[-] FilesystemInterface.php
[open]