2011-03-03 22:08:54 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Init owncloud
|
2011-07-28 21:04:34 +00:00
|
|
|
require_once('../../lib/base.php');
|
2011-03-03 22:08:54 +00:00
|
|
|
|
2011-09-23 20:22:59 +00:00
|
|
|
OC_JSON::checkLoggedIn();
|
2011-03-03 22:08:54 +00:00
|
|
|
|
|
|
|
// Get data
|
2012-01-15 19:48:38 +00:00
|
|
|
$dir = stripslashes($_GET["dir"]);
|
|
|
|
$file = stripslashes($_GET["file"]);
|
|
|
|
$newname = stripslashes($_GET["newname"]);
|
2011-03-03 22:08:54 +00:00
|
|
|
|
|
|
|
// Delete
|
2011-07-29 19:36:03 +00:00
|
|
|
if( OC_Files::move( $dir, $file, $dir, $newname )) {
|
2011-09-23 20:22:59 +00:00
|
|
|
OC_JSON::success(array("data" => array( "dir" => $dir, "file" => $file, "newname" => $newname )));
|
2011-03-03 22:08:54 +00:00
|
|
|
}
|
|
|
|
else{
|
2011-09-23 20:22:59 +00:00
|
|
|
OC_JSON::error(array("data" => array( "message" => "Unable to rename file" )));
|
2011-03-03 22:08:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|