One Hat Cyber Team
Your IP :
3.21.186.117
Server IP :
104.21.48.1
Server :
Linux agrigation-prod 5.15.0-67-generic #74-Ubuntu SMP Wed Feb 22 14:14:39 UTC 2023 x86_64
Server Software :
nginx/1.24.0
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
forge
/
gftag.com
/
vendor
/
league
/
flysystem
/
src
/
View File Name :
Directory.php
<?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); } }