mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-15 05:08:51 +01:00
🎨 提供删除文件 API Fix https://github.com/siyuan-note/siyuan/issues/7678
This commit is contained in:
parent
6eb5830d75
commit
d04eacbf9a
4 changed files with 76 additions and 3 deletions
29
API.md
29
API.md
|
|
@ -38,6 +38,7 @@
|
|||
* [File](#File)
|
||||
* [Get file](#Get-file)
|
||||
* [Put file](#Put-file)
|
||||
* [Remove file](#Remove-file)
|
||||
* [Export](#Export)
|
||||
* [Export Markdown](#Export-Markdown)
|
||||
* [Notification](#Notification)
|
||||
|
|
@ -439,7 +440,7 @@ View API token in <kbd>Settings - About</kbd>, request header: `Authorization: T
|
|||
}
|
||||
```
|
||||
|
||||
* `id`:Block ID
|
||||
* `id`: Block ID
|
||||
* Return value
|
||||
|
||||
```json
|
||||
|
|
@ -854,7 +855,7 @@ View API token in <kbd>Settings - About</kbd>, request header: `Authorization: T
|
|||
* `isDir`: whether to create a folder, when `true` only create a folder, ignore `file`
|
||||
* `modTime`: last access and modification time, Unix time
|
||||
* `file`: the uploaded file
|
||||
* return value
|
||||
* Return value
|
||||
|
||||
```json
|
||||
{
|
||||
|
|
@ -864,6 +865,28 @@ View API token in <kbd>Settings - About</kbd>, request header: `Authorization: T
|
|||
}
|
||||
```
|
||||
|
||||
### Remove file
|
||||
|
||||
* `/api/file/removeFile`
|
||||
* Parameters
|
||||
|
||||
```json
|
||||
{
|
||||
"path": "/data/20210808180117-6v0mkxr/20200923234011-ieuun1p.sy"
|
||||
}
|
||||
```
|
||||
* `path`: the file path under the workspace path
|
||||
* Return value
|
||||
|
||||
```json
|
||||
{
|
||||
"code": 0,
|
||||
"msg": "",
|
||||
"data": null
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
## Export
|
||||
|
||||
### Export Markdown
|
||||
|
|
@ -946,7 +969,7 @@ View API token in <kbd>Settings - About</kbd>, request header: `Authorization: T
|
|||
}
|
||||
}
|
||||
```
|
||||
* `id`:Message ID
|
||||
* `id`: Message ID
|
||||
|
||||
## System
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue