summaryrefslogtreecommitdiffstats
path: root/apps/files/ajax/newfolder.php
diff options
context:
space:
mode:
authorGeorg Ehrke <dev@georgswebsite.de>2012-04-18 17:27:34 +0200
committerGeorg Ehrke <dev@georgswebsite.de>2012-04-18 17:27:34 +0200
commit45de7ad221f9e505abdabcc5084dd12c80851469 (patch)
tree9afe2994fe01d35cf7aa2e16389c04bb3e298faf /apps/files/ajax/newfolder.php
parentdfc92675e0d76ad9550a274b712e084e1738831c (diff)
downloadnextcloud-server-45de7ad221f9e505abdabcc5084dd12c80851469.tar.gz
nextcloud-server-45de7ad221f9e505abdabcc5084dd12c80851469.zip
move files to app folder
Diffstat (limited to 'apps/files/ajax/newfolder.php')
-rw-r--r--apps/files/ajax/newfolder.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/apps/files/ajax/newfolder.php b/apps/files/ajax/newfolder.php
new file mode 100644
index 00000000000..2aff95e5b35
--- /dev/null
+++ b/apps/files/ajax/newfolder.php
@@ -0,0 +1,22 @@
+<?php
+
+// Init owncloud
+
+
+OC_JSON::checkLoggedIn();
+
+// Get the params
+$dir = isset( $_POST['dir'] ) ? stripslashes($_POST['dir']) : '';
+$foldername = isset( $_POST['foldername'] ) ? stripslashes($_POST['foldername']) : '';
+
+if(trim($foldername) == '') {
+ OC_JSON::error(array("data" => array( "message" => "Empty Foldername" )));
+ exit();
+}
+
+if(OC_Files::newFile($dir, stripslashes($foldername), 'dir')) {
+ OC_JSON::success(array("data" => array()));
+ exit();
+}
+
+OC_JSON::error(array("data" => array( "message" => "Error when creating the folder" )));