Blazor.FileSystemAccess icon indicating copy to clipboard operation
Blazor.FileSystemAccess copied to clipboard

A Blazor wrapper for the File System Access browser API.

Results 11 Blazor.FileSystemAccess issues
Sort by recently updated
recently updated
newest added

## Why? The wrapper is prone to human errors as it is an interpretation of the Web IDL specifications. We have already seen such errors e.g. in PR #14. I...

documentation
enhancement

Is it possible to save a file that's "uploaded" through the `` component and wind up saving it through the FileAPI implemented in your library? I see references to Blob...

enhancement

I have looked at adding support for the Drag and Drop part of the API which is defined like this in the [Web IDL specs](https://wicg.github.io/file-system-access/#drag-and-drop): ```WebIDL partial interface DataTransferItem {...

enhancement

Hello, I'm getting a Error while trying to open a Directory Dialog. ``` protected async Task SetExcludeFoler() { try { var options = new DirectoryPickerOptionsStartInWellKnownDirectory() { StartIn = WellKnownDirectory.Pictures };...

enhancement

This is not a problem with the core library itself but with the demo of the MemeGenerator. The top text has a max width for the fill that should make...

enhancement

This issue is not high priority as it is not a problem with the core-library but instead with the Tree Map Chart which is used in the sample. When many...

enhancement

I cloned your repository and ran it locally. On the /ViewZipFile page, if I select a zip file with a size above 50 KB, it crashes at: ```c# var buffer...

Hi, I looked at the source code but I didn't find how to check if a file exists before reading. Thanks

Related to #35 I'm still missing some details and some experimentation to get the best user experience so this is only a draft for now.

When user aborts open/save dialog, `showSaveFilePicker`/`showOpenFilePicker` APIs throws `AbortError` which is unhandled by the Blazor.FileSystemAccess library. The exception can be catched on the C# side only as generic JSException which...