コード例 #1
0
 /**
  * Ensure the root directory exists.
  *
  * @param string $root root directory path
  *
  * @return string real path to root
  */
 protected function ensureDirectory($root)
 {
     $root = $this->wrapPath($root);
     return parent::ensureDirectory($root);
 }
コード例 #2
0
ファイル: Local.php プロジェクト: weyii/yii2-filesystem
 /**
  * @inheritdoc
  */
 protected function ensureDirectory($root)
 {
     return parent::ensureDirectory(Yii::getAlias($root));
 }