2011-07-22 08:21:53 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Init owncloud
|
2012-04-17 21:31:29 +04:00
|
|
|
|
2011-07-22 08:21:53 +04:00
|
|
|
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::checkLoggedIn();
|
2012-07-07 17:58:11 +04:00
|
|
|
OCP\JSON::callCheck();
|
2011-07-22 08:21:53 +04:00
|
|
|
|
|
|
|
// Get data
|
2012-01-15 23:48:38 +04:00
|
|
|
$dir = stripslashes($_GET["dir"]);
|
|
|
|
$file = stripslashes($_GET["file"]);
|
|
|
|
$target = stripslashes($_GET["target"]);
|
2011-07-22 08:21:53 +04:00
|
|
|
|
|
|
|
|
2012-08-29 02:50:12 +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 )));
|
2012-08-29 02:50:12 +04:00
|
|
|
} else {
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::error(array("data" => array( "message" => "Could not move $file" )));
|
2011-07-22 08:21:53 +04:00
|
|
|
}
|