rename use file id
parent
47bf9705bb
commit
244fbf747c
|
@ -342,7 +342,8 @@ class Onedrive {
|
||||||
$oldname = path_format($file['path'] . '/' . $oldname);
|
$oldname = path_format($file['path'] . '/' . $oldname);
|
||||||
$data = '{"name":"' . $newname . '"}';
|
$data = '{"name":"' . $newname . '"}';
|
||||||
//echo $oldname;
|
//echo $oldname;
|
||||||
$result = $this->MSAPI('PATCH', $oldname, $data);
|
if ($file['id']) $result = $this->MSAPI('PATCH', "/items/" . $file['id'], $data);
|
||||||
|
else $result = $this->MSAPI('PATCH', $oldname, $data);
|
||||||
return output(json_encode($this->files_format(json_decode($result['body'], true))), $result['stat']);
|
return output(json_encode($this->files_format(json_decode($result['body'], true))), $result['stat']);
|
||||||
}
|
}
|
||||||
public function Delete($file) {
|
public function Delete($file) {
|
||||||
|
@ -946,6 +947,9 @@ class Onedrive {
|
||||||
$url = $this->api_url . $this->ext_api_url;
|
$url = $this->api_url . $this->ext_api_url;
|
||||||
if ($path=='' or $path=='/') {
|
if ($path=='' or $path=='/') {
|
||||||
$url .= '/';
|
$url .= '/';
|
||||||
|
} elseif (substr($path, 0, 6)=="/items") {
|
||||||
|
$url = substr($url, 0, -5);
|
||||||
|
$url .= $path;
|
||||||
} else {
|
} else {
|
||||||
$url .= ':' . $path;
|
$url .= ':' . $path;
|
||||||
if (substr($url,-1)=='/') $url=substr($url,0,-1);
|
if (substr($url,-1)=='/') $url=substr($url,0,-1);
|
||||||
|
|
Loading…
Reference in New Issue