fileopsCreateFolder() публичный Метод

Creates a folder.
public fileopsCreateFolder ( string $path, string[optional] $locale = null, bool[optional] $sandbox = false ) : array
$path string The path to the new folder to create relative to root.
$locale string[optional]
$sandbox bool[optional]
Результат array
Пример #1
0
 /**
  * Tests Dropbox->fileopsMove()
  */
 public function testFileopsMove()
 {
     $this->dropbox->fileopsCreateFolder(BASE_PATH . 'will_be_moved');
     $response = $this->dropbox->fileopsMove(BASE_PATH . 'will_be_moved', BASE_PATH . 'moved');
     $this->isDir($response);
     $this->dropbox->fileopsDelete(BASE_PATH . 'moved');
 }