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