列出文件目录
POST
/api/fs/list最后修改时间: 6 个月前
责任人: 未设置
请求参数
Header 参数
Authorization
string
必需
示例值:
{{alist_token}}
Body 参数application/json
path
string
路径
password
string
密码
page
integer
页数
per_page
integer
每页数目
refresh
boolean
是否强制刷新
示例
{
"path": "/t",
"password": "",
"page": 1,
"per_page": 0,
"refresh": false
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
状态码
message
string
信息
data
object
必需
content
array [object {10}]
内容
total
integer
总数
readme
string
说明
write
boolean
是否可写入
provider
string
必需
header
string
必需
示例
{
"code": 200,
"message": "success",
"data": {
"content": [
{
"name": "Alist V3.md",
"size": 1592,
"is_dir": false,
"modified": "2024-05-17T13:47:55.4174917+08:00",
"created": "2024-05-17T13:47:47.5725906+08:00",
"sign": "",
"thumb": "",
"type": 4,
"hashinfo": "null",
"hash_info": null
}
],
"total": 1,
"readme": "",
"header": "",
"write": true,
"provider": "Local"
}
}
最后修改时间: 6 个月前