Skip to content

Latest commit

 

History

History
55 lines (44 loc) · 956 Bytes

020.080.删除文件或文件夹.md

File metadata and controls

55 lines (44 loc) · 956 Bytes

将文件删除

  • 请求地址 /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": "..."
}