nextcloud/apps/files/ajax/move.php

21 lines
397 B
PHP
Raw Normal View History

<?php
// Init owncloud
OC_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)){
OC_JSON::success(array("data" => array( "dir" => $dir, "files" => $file )));
}else{
2012-01-02 03:45:26 +04:00
OC_JSON::error(array("data" => array( "message" => "Could not move $file" )));
}
?>