예제 #1
0
 /**
  * Create a directory
  *
  * @param string $path
  * @param int    $mode
  * @param int    $options
  *
  * @return boolean
  */
 public function mkdir($path, $mode, $options)
 {
     $this->openFile($path);
     // TODO handle $mode
     $this->file->createDirectory($options & STREAM_MKDIR_RECURSIVE);
     return true;
 }