nextcloud/files/ajax/newfolder.php

23 lines
584 B
PHP
Raw Normal View History

2011-04-17 19:49:56 +04:00
<?php
// Init owncloud
require_once('../../lib/base.php');
OC_JSON::checkLoggedIn();
2011-04-17 19:49:56 +04:00
// Get the params
$dir = isset( $_GET['dir'] ) ? stripslashes($_GET['dir']) : '';
$foldername = isset( $_GET['foldername'] ) ? stripslashes($_GET['foldername']) : '';
2011-04-17 19:49:56 +04:00
2011-12-23 21:28:44 +04:00
if(trim($foldername) == '') {
OC_JSON::error(array("data" => array( "message" => "Empty Foldername" )));
2011-04-17 19:49:56 +04:00
exit();
}
2011-10-16 23:42:24 +04:00
if(OC_Files::newFile($dir, stripslashes($foldername), 'dir')) {
OC_JSON::success(array("data" => array()));
2011-04-17 19:49:56 +04:00
exit();
}
OC_JSON::error(array("data" => array( "message" => "Error when creating the folder" )));