summaryrefslogtreecommitdiffstats
path: root/apps/files/ajax/newfolder.php
blob: 512e0e1f6d99696dcbe288dfac2bc787ce87d48e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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" )));