ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
Directory.php
Go to the documentation of this file.
1 <?php
2 
3 namespace League\Flysystem;
4 
5 class Directory extends Handler
6 {
12  public function delete()
13  {
14  return $this->filesystem->deleteDir($this->path);
15  }
16 
24  public function getContents($recursive = false)
25  {
26  return $this->filesystem->listContents($this->path, $recursive);
27  }
28 }
getContents($recursive=false)
List the directory contents.
Definition: Directory.php:24