mirror of
https://github.com/immich-app/immich
synced 2026-08-22 13:13:05 +00:00
1.2 KiB
1.2 KiB
openapi.api.FilesystemApi
Load the API package
import 'package:openapi/api.dart';
All URIs are relative to /api
| Method | HTTP request | Description |
|---|---|---|
| getFileListing | GET /yucca/fs |
getFileListing
FilesystemListingResponseDto getFileListing(path)
Example
import 'package:openapi/api.dart';
final api_instance = FilesystemApi();
final path = path_example; // String |
try {
final result = api_instance.getFileListing(path);
print(result);
} catch (e) {
print('Exception when calling FilesystemApi->getFileListing: $e\n');
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| path | String | [optional] |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]