nextcloud/apps/files/ajax/move.php

21 lines
400 B
PHP
Raw Normal View History

<?php
// Init owncloud
2012-05-03 14:23:29 +04:00
OCP\JSON::checkLoggedIn();
// Get data
$dir = stripslashes($_GET["dir"]);
$file = stripslashes($_GET["file"]);
$target = stripslashes($_GET["target"]);
2011-07-29 23:36:03 +04:00
if(OC_Files::move($dir,$file,$target,$file)){
2012-05-03 14:23:29 +04:00
OCP\JSON::success(array("data" => array( "dir" => $dir, "files" => $file )));
}else{
2012-05-03 14:23:29 +04:00
OCP\JSON::error(array("data" => array( "message" => "Could not move $file" )));
}
?>