From: Robin Appelman Date: Fri, 22 Jul 2011 04:21:53 +0000 (+0200) Subject: finally the missing file for moving files from the web interface X-Git-Tag: v3.0~267^2~390 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4ff2dc30354d923115d2ad4324fd4b5ed87a8028;p=nextcloud-server.git finally the missing file for moving files from the web interface --- diff --git a/files/ajax/move.php b/files/ajax/move.php new file mode 100644 index 00000000000..b1ba641c5b1 --- /dev/null +++ b/files/ajax/move.php @@ -0,0 +1,27 @@ + "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" ))); +} + +?> \ No newline at end of file