コード例 #1
0
ファイル: NativeShare.php プロジェクト: ZverAleksey/core
 /**
  * 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));
 }