/**
  * Get all the meta data of a file or directory.
  *
  * @param string $path
  *
  * @return array|false
  */
 public function getSize($path)
 {
     return ['size' => $this->client->strlen($path)];
 }