Neos\Flow\ResourceManagement\Streams\StreamWrapperInterface::readDirectory PHP Method

readDirectory() public method

This method is called in response to readdir().
public readDirectory ( ) : string
return string Should return string representing the next filename, or FALSE if there is no next file.
    public function readDirectory();

Usage Example

 /**
  * Read entry from directory handle.
  *
  * This method is called in response to readdir().
  *
  * @return string Should return string representing the next filename, or FALSE if there is no next file.
  */
 public function dir_readdir()
 {
     return $this->streamWrapper->readDirectory();
 }