server/apps/files/ajax/newfolder.php
Frank Karlitschek 43caa3b3b9 ported oc_json
2012-05-03 12:23:29 +02:00

22 lines
557 B
PHP
Executable file

<?php
// Init owncloud
OCP\JSON::checkLoggedIn();
// Get the params
$dir = isset( $_POST['dir'] ) ? stripslashes($_POST['dir']) : '';
$foldername = isset( $_POST['foldername'] ) ? stripslashes($_POST['foldername']) : '';
if(trim($foldername) == '') {
OCP\JSON::error(array("data" => array( "message" => "Empty Foldername" )));
exit();
}
if(OC_Files::newFile($dir, stripslashes($foldername), 'dir')) {
OCP\JSON::success(array("data" => array()));
exit();
}
OCP\JSON::error(array("data" => array( "message" => "Error when creating the folder" )));