KristofferStrube.Blazor.FileSystem
0.3.1
Prefix Reserved
dotnet add package KristofferStrube.Blazor.FileSystem --version 0.3.1
NuGet\Install-Package KristofferStrube.Blazor.FileSystem -Version 0.3.1
<PackageReference Include="KristofferStrube.Blazor.FileSystem" Version="0.3.1" />
paket add KristofferStrube.Blazor.FileSystem --version 0.3.1
#r "nuget: KristofferStrube.Blazor.FileSystem, 0.3.1"
// Install KristofferStrube.Blazor.FileSystem as a Cake Addin #addin nuget:?package=KristofferStrube.Blazor.FileSystem&version=0.3.1 // Install KristofferStrube.Blazor.FileSystem as a Cake Tool #tool nuget:?package=KristofferStrube.Blazor.FileSystem&version=0.3.1
Introduction
A Blazor wrapper for the File System browser API.
The API standardizes ways to handle files and directories. It also enables access to the origin private file system which is a virtual sandboxed file system. This project implements a wrapper around the API for Blazor so that we can easily and safely interact with it from Blazor.
Demo
The sample project can be demoed at https://kristofferstrube.github.io/Blazor.FileSystem/
On each page you can find the corresponding code for the example in the top right corner.
On the API Coverage Status you can see how much of the WebIDL specs this wrapper has covered.
Getting Started
Prerequisites
You need to install .NET 7.0 or newer to use the library.
Installation
You can install the package via Nuget with the Package Manager in your IDE or alternatively using the command line:
dotnet add package KristofferStrube.Blazor.FileSystem
Usage
The package can be used in Blazor WebAssembly and Blazor Server projects. (Note that streaming of big files is not supported in Blazor Server due to bandwidth problems.)
Import
You need to reference the package in order to use it in your pages. This can be done in _Import.razor
by adding the following.
@using KristofferStrube.Blazor.FileSystem
Add to service collection
The library has one service which is the IStorageManagerService
which can be used to get access to the origin private file system. An easy way to make the service available in all your pages is by registering it in the IServiceCollection
so that it can be dependency injected in the pages that need it. This is done in Program.cs
by adding the following before you build the host and run it.
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.RootComponents.Add<App>("#app");
builder.RootComponents.Add<HeadOutlet>("head::after");
// Other services are added.
builder.Services.AddStorageManagerService();
await builder.Build().RunAsync();
Inject in page
Then the service can be injected in a page like so:
@inject IStorageManagerService StorageManagerService;
Then you can use IStorageManagerService
to get a directory handle for the origin private file system and read/create a file in it like this:
<button @onclick="OpenAndReadFile">Open Single File and Read</button>
@code {
private async Task OpenAndReadFile()
{
FileSystemDirectoryHandle directoryHandle = await StorageManagerService.GetOriginPrivateDirectoryAsync();
FileSystemFileHandle fileHandle = await directoryHandle.GetFileHandleAsync("file.txt", new() { Create = true });
FileAPI.File file = await fileHandle.GetFileAsync();
// Do something with the file.
}
}
The counterpart to getting a File
via the GetFileAsync()
method is getting a FileSystemWritableFileStream
via the CreateWritableAsync()
method which can be used to write to the file referenced with the FileSystemFileHandle
like this:
FileSystemFileHandle fileHandle; // Some file handle
FileSystemWritableFileStream writable = await fileHandle.CreateWritableAsync();
await writable.WriteAsync("some text");
await writable.CloseAsync();
You need to close the FileSystemWritableFileStream
to commit the written text. You can either do so explicitly as seen above or you can use it in a using statement like this:
FileSystemFileHandle fileHandle; // Some file handle
await using FileSystemWritableFileStream writable = await fileHandle.CreateWritableAsync();
await writable.WriteAsync(new byte[] { 0, 1, 2, 3, 4, 5 });
This will automatically await the close when you get to the end of the current scope.
Issues
Feel free to open issues on the repository if you find any errors with the package or have wishes for features.
Related repositories
This project uses the Blazor.FileAPI package to return a rich File
from the GetFileAsync
method on a FileSystemFileHandle
and when writing a Blob
to a FileSystemWritableFileSystem
.
This project is used in the Blazor.FileSystemAccess package as a basis for the file handles that it uses in its methods and extends on.
Related articles
This repository was build with inspiration and help from the following series of articles:
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net7.0
- KristofferStrube.Blazor.FileAPI (>= 0.3.0)
- Microsoft.AspNetCore.Components.Web (>= 7.0.3)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on KristofferStrube.Blazor.FileSystem:
Package | Downloads |
---|---|
KristofferStrube.Blazor.FileSystemAccess
File System Access API wrapper implementation for Blazor. |
|
Thinktecture.Blazor.FileHandling
File Handling API wrapper implementation for Blazor. |
|
PatrickJahr.Blazor.FileHandling
File Handling API wrapper implementation for Blazor. |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on KristofferStrube.Blazor.FileSystem:
Repository | Stars |
---|---|
KristofferStrube/Blazor.FileSystemAccess
A Blazor wrapper for the File System Access browser API.
|