HFS 3
  1. Front-end
HFS 3
  • Introduction
  • Front-end
    • List files
      GET
    • Upload
      PUT
    • Upload
      POST
    • Delete
      DELETE
    • Create folder
      POST
  • Admin
    • misc
      • get config
      • set config
    • accounts
      • add account
      • update account
      • list accounts
      • delete account
      • list usernames
      • get account
      • list admins
      • safer update of the password
    • VFS
    • plugins
      • get plugin config
      • set plugin config
    • monitoring
    • log
  1. Front-end

List files

GET
/~/api/get_file_list
returns all files of a specified folder

Request

Query Params

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://localhost/~/api/get_file_list?uri&offset&limit&search&c'

Responses

🟢200all files accordingly to the specified parameters
application/json
Body

Example
{
    "can_archive": true,
    "can_upload": true,
    "can_delete": true,
    "can_comment": true,
    "list": [
        {
            "n": "string",
            "c": "2019-08-24T14:15:22Z",
            "m": "2019-08-24T14:15:22Z",
            "s": 0,
            "p": "string",
            "comment": "string"
        }
    ]
}
Modified at 2024-05-11 06:42:13
Previous
Introduction
Next
Upload
Built with