SeaweedFSFilerClient
Classsealednet10.0
A strongly-typed HTTP client for interacting with the SeaweedFS Native Filer API.
namespace CommunityToolkit.Aspire.SeaweedFS.Client;
public sealed class SeaweedFSFilerClient{ // ...}Remarks
Section titled Remarks The
SeaweedFSFilerClient provides a direct interface to the SeaweedFS Filer node, allowing for file system operations such as listing, creating, and managing files/directories. Usage example:public class MyService(SeaweedFSFilerClient filerClient){ public async Task ListFilesAsync() { var response = await filerClient.HttpClient.GetAsync("/"); // ... }}