nextcloud/apps/files/ajax/newfolder.php

27 lines
684 B
PHP
Raw Normal View History

2011-04-17 19:49:56 +04:00
<?php
// Init owncloud
2011-04-17 19:49:56 +04:00
2012-05-03 14:23:29 +04:00
OCP\JSON::checkLoggedIn();
2011-04-17 19:49:56 +04:00
// Get the params
2012-03-08 00:43:44 +04:00
$dir = isset( $_POST['dir'] ) ? stripslashes($_POST['dir']) : '';
$foldername = isset( $_POST['foldername'] ) ? stripslashes($_POST['foldername']) : '';
2011-04-17 19:49:56 +04:00
2011-12-23 21:28:44 +04:00
if(trim($foldername) == '') {
2012-05-03 14:23:29 +04:00
OCP\JSON::error(array("data" => array( "message" => "Empty Foldername" )));
2011-04-17 19:49:56 +04:00
exit();
}
if(strpos($foldername,'/')!==false){
OCP\JSON::error(array("data" => array( "message" => "Invalid Foldername" )));
exit();
}
2011-10-16 23:42:24 +04:00
if(OC_Files::newFile($dir, stripslashes($foldername), 'dir')) {
2012-05-03 14:23:29 +04:00
OCP\JSON::success(array("data" => array()));
2011-04-17 19:49:56 +04:00
exit();
}
2012-05-03 14:23:29 +04:00
OCP\JSON::error(array("data" => array( "message" => "Error when creating the folder" )));