- 请求地址 /v1/files/remove
POST
- 请求方式 JSON/Http POST
- 请求参数
Properties | Type | Description |
---|---|---|
* uuid | string | 需要重命名该文件(夹)的uuid(可选) 可以为数组 |
* path | string | 需要重命名文件(夹)的路径(可选),可以为数组 |
- 将uuid为
dewjio3233ss
的目录删除
发送 /v1/files/remove :
{
"uuid":"dewjio3233ss"
}
收到:
{
"status": 200,
"result": 2,
"code": "OK",
"success": true,
"token": "..."
}
- 使用path删除
发送 /v1/files/remove :
{
"path":"/d/e"
}
收到:
{
"status": 200,
"result": 4,
"code": "OK",
"success": true,
"token": "..."
}