Coder Social home page Coder Social logo

Comments (2)

J4L0 avatar J4L0 commented on August 23, 2024 1

Thanks for the very quick reply and your work on this Project! For my personal use it offers a little too many options. Thus, I might just use certain concepts and code pieces.

Regards and keep up the good work!

from blazor.filesystem.

KristofferStrube avatar KristofferStrube commented on August 23, 2024

Hey @J4L0, you are right. When FileSystemWritableFileStream was changed to inherit from Blazor.Streams's WritableStream class instead of just Stream in version 2.0.0 of Blazor.FileSystemAccess I have accidentally also used the inherited helper JS file which originates from Blazor.Streams. But I have also gotten smarter since I wrote this originally a year ago and now have a way to parse the Blob argument from BlobWriteParams to the write method without a dedicated JS method. I will get that out very soon which should fix your immediate problems.

Apart from this I hear that you are looking into trying to write a DotNetStreamReference. To find examples where I have already done this I recommend that you check out Blazor.Streams and specifically take a look at Stream copying to a WritableStream and its associated source code WritableStreamCopyTo.razor which can be adjusted to writing to a FileSystemWritableFileStream from the Blazor.FileSystem library:

 // Some FileSystem stream you have gotten from a FileSystemFileHandle.
FileSystemWritableFileStream fsWritableStream;

// Some Stream of data.
Stream data = await HttpClient.GetStreamAsync("images/mountain.jpg");

// Stream copying.
await data.CopyToAsync(fsWritableStream);

Thanks for your interest in the library. 😁

from blazor.filesystem.

Related Issues (5)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.