array( "message" => "Could not move $file - File with this name already exists" ))); exit; } if ($dir != '' || $file != 'Shared') { $targetFile = \OC\Files\Filesystem::normalizePath($target . '/' . $file); $sourceFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $file); if(\OC\Files\Filesystem::rename($sourceFile, $targetFile)) { OCP\JSON::success(array("data" => array( "dir" => $dir, "files" => $file ))); } else { OCP\JSON::error(array("data" => array( "message" => "Could not move $file" ))); } }else{ OCP\JSON::error(array("data" => array( "message" => "Could not move $file" ))); }