21 lines
400 B
PHP
21 lines
400 B
PHP
<?php
|
|
|
|
// Init owncloud
|
|
|
|
|
|
OCP\JSON::checkLoggedIn();
|
|
|
|
// Get data
|
|
$dir = stripslashes($_GET["dir"]);
|
|
$file = stripslashes($_GET["file"]);
|
|
$target = stripslashes($_GET["target"]);
|
|
|
|
|
|
if(OC_Files::move($dir,$file,$target,$file)){
|
|
OCP\JSON::success(array("data" => array( "dir" => $dir, "files" => $file )));
|
|
}else{
|
|
OCP\JSON::error(array("data" => array( "message" => "Could not move $file" )));
|
|
}
|
|
|
|
?>
|