Skip to main content

BrowseResponse

current_pathstringrequired

Current directory path

entries object[]required

List of entries in the current directory

  • Array [
  • is_directorybooleanrequired

    Whether this is a directory

    is_readablebooleanrequired

    Whether the entry is readable

    namestringrequired

    Name of the file or directory

    pathstringrequired

    Full path to the entry

  • ]
  • parent_pathstring | nullnullable

    Parent directory path (None if at root)

    BrowseResponse
    {
    "current_path": "/home/user/Documents",
    "entries": [
    {
    "is_directory": true,
    "is_readable": true,
    "name": "Comics",
    "path": "/home/user/Documents/Comics"
    },
    {
    "is_directory": true,
    "is_readable": true,
    "name": "Manga",
    "path": "/home/user/Documents/Manga"
    }
    ],
    "parent_path": "/home/user"
    }