Blame view
sources/apps/files/ajax/move.php
1 KB
|
03e52840d
|
1 |
<?php |
|
03e52840d
|
2 3 |
OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); |
|
6d9380f96
|
4 |
\OC::$session->close(); |
|
03e52840d
|
5 6 7 8 9 10 11 12 13 14 15 16 |
// Get data
$dir = stripslashes($_POST["dir"]);
$file = stripslashes($_POST["file"]);
$target = stripslashes(rawurldecode($_POST["target"]));
$l = OC_L10N::get('files');
if(\OC\Files\Filesystem::file_exists($target . '/' . $file)) {
OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s - File with this name already exists", array($file)) )));
exit;
}
|
|
837968727
|
17 |
if ($target != '' || strtolower($file) != 'shared') {
|
|
03e52840d
|
18 19 20 21 22 23 24 25 26 27 |
$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" => $l->t("Could not move %s", array($file)) )));
}
}else{
OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s", array($file)) )));
}
|