## 创建文件夹
注:其中API参数{fileId}表示父目录ID(在该目录下创建目录),根目录为0。目录嵌套最大深度为10。
~~~[api]
post:https://api.kstore.space/api/v1/file/create
*access_token=11-c4a1ccd34fc8498b8c67facbbb536c7d#认证码
*int:fileId=0#父目录ID,根目录为0
*name=folder#文件夹名
<<<
success
{
"status": 200,
"msg": null,
"data": {
"id": 129,
"userId": 11,
"parentId": 0,
"type": "folder",
"name": "file",
"size": 0,
"path": "file/",
"realpath": null,
"downloadUrl": "https://download.kstore.space/api/v1/download/11/file/",
"downloadCount": null,
"createTime": 1584110507004,
"time": 1584110506983
}
}
<<<
error
~~~