finally the missing file for moving files from the web interface

This commit is contained in:
Robin Appelman 2011-07-22 06:21:53 +02:00
parent 8eefd42a7d
commit 4ff2dc3035
1 changed files with 27 additions and 0 deletions

27
files/ajax/move.php Normal file
View File

@ -0,0 +1,27 @@
<?php
// Init owncloud
require_once('../../lib/base.php');
// We send json data
header( "Content-Type: application/jsonrequest" );
// Check if we are a user
if( !OC_USER::isLoggedIn()){
echo json_encode( array( "status" => "error", "data" => array( "message" => "Authentication error" )));
exit();
}
// Get data
$dir = $_GET["dir"];
$file = $_GET["file"];
$target = $_GET["target"];
if(OC_FILES::move($dir,$file,$target,$file)){
echo json_encode( array( "status" => 'success', "data" => array( "dir" => $dir, "files" => $file )));
}else{
echo json_encode( array( "status" => 'error', "data" => array( "message" => "Could move $file" )));
}
?>