Thinktecture.Blazor.FileHandling 2.0.0

Suggested Alternatives

PatrickJahr.Blazor.FileHandling

dotnet add package Thinktecture.Blazor.FileHandling --version 2.0.0
NuGet\Install-Package Thinktecture.Blazor.FileHandling -Version 2.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Thinktecture.Blazor.FileHandling" Version="2.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Thinktecture.Blazor.FileHandling --version 2.0.0
#r "nuget: Thinktecture.Blazor.FileHandling, 2.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Thinktecture.Blazor.FileHandling as a Cake Addin
#addin nuget:?package=Thinktecture.Blazor.FileHandling&version=2.0.0

// Install Thinktecture.Blazor.FileHandling as a Cake Tool
#tool nuget:?package=Thinktecture.Blazor.FileHandling&version=2.0.0

Thinktecture.Blazor.FileHandling

NuGet Downloads (official NuGet)

Introduction

A Blazor wrapper for the File Handling API.

The File Handling API allows you to register your Progressive Web App as a file handler for certain file types.

Getting started

Prerequisites

You need .NET 7.0 or newer to use this library.

Download .NET 7

Platform support

Platform support for Badging API

Installation

You can install the package via NuGet with the Package Manager in your IDE or alternatively using the command line:

dotnet add package Thinktecture.Blazor.FileHandling

Usage

The package can be used in Blazor WebAssembly projects.

Add to service collection

To make the FileHandlingService available on all pages, register it at the IServiceCollection in Program.cs before the host is built:

builder.Services.AddFileHandlingService();

Checking for browser support

Before using the File Handling API, you should first test if the API is supported on the target platform by calling the IsSupportedAsync() method. This method returns a boolean to indicate whether the File Handling API is supported or not.

var isSupported = await fileHandlingService.IsSupportedAsync();
if (isSupported)
{
    // enable file handling feature
}
else
{
    // use fallback mechanism or hide/disable feature
}

Internally, this method tests for the presence of the launchQueue property on the window object of the target browser.

Register in Web App Manifest

The API consists of two parts: First, you need to declare support for the target file types in your Web Application Manifest (typically called manifest.json or manifest.webmanifest). The property file_handlers contains an array of file handlers. Each file handler consists of the list of accepted media types and file extensions (accept property). The action property contains the address that should be launched when a file with the particular media type or file extension was opened.

{
  "file_handlers": [{
    "action": "./",
    "accept": {
      "text/plain": [".txt"]
    }
  }]
}

During installation, the application is registered at the target platform as a handler for the given file types.

Access launch parameters during runtime

To access the launch parameters during runtime, call the SetConsumerAsync() method. This method takes an action that is immediately called with the LaunchParams. This object has a Files property that currently directly contains a list of FileSystemHandles for the files. The handles are either an instance of FileSystemFileHandle or FileSystemDirectoryHandle, so make sure to check for the correct type. To get the binary contents of files, call the GetFileAsync() method on a FileSystemFileHandle. This method returns a File object that offers methods like TextAsync() and ArrayBufferAsync() to retrieve the file's contents in different formats.

var isSupported = await fileHandlingService.IsSupportedAsync();
if (isSupported)
{
    await _fileHandlingService.SetConsumerAsync(async (launchParams) =>
    {
        foreach (var fileSystemHandle in launchParams.Files)
        {
            if (fileSystemHandle is FileSystemFileHandle fileSystemFileHandle)
            {
                var file = await fileSystemFileHandle.GetFileAsync();
    
                var text1 = await file.TextAsync();
                Console.WriteLine(text1);
    
                var bytes = await file.ArrayBufferAsync();
                var text2 = System.Text.Encoding.UTF8.GetString(bytes);
                Console.WriteLine(text2);
            }
        }
    });
}

Acknowledgements

Thanks to Kristoffer Strube who provides a Blazor wrapper for the File System Access API. This library is inspired by Kristoffer's implementation and project setup, and uses the same classes to access file contents.

License and Note

BSD-3-Clause.

This is a technical showcase, not an official Thinktecture product.

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Thinktecture.Blazor.FileHandling:

Repository Stars
sungaila/PDFtoImage
A .NET library to render PDF files into images.
Version Downloads Last updated
2.0.0 2,504 2/10/2023
1.0.1 266 1/27/2023
1.0.0 266 1/25/2023