Exemplo n.º 1
0
 /**
  * Create a folder on the share
  *
  * @param string $path
  * @return bool
  *
  * @throws \Icewind\SMB\Exception\NotFoundException
  * @throws \Icewind\SMB\Exception\AlreadyExistsException
  */
 public function mkdir($path)
 {
     $this->connect();
     return $this->state->mkdir($this->buildUrl($path));
 }