bcpeinhardt / simplifile

Simple file operations for Gleam that work on all targets (Erlang/Node/Deno)
71 stars 10 forks source link

[Request] Read file chunks #29

Closed ALX99 closed 4 months ago

ALX99 commented 4 months ago

If I have not misunderstood things, currently it is only possible to read files as a whole, which makes it impossible to use this library for large files

I would like to request a feature that allows you to read the file in chunks (read x bytes at a time for example).

bcpeinhardt commented 4 months ago

@ALX99 did you check out the file streams library linked in the README? I think that's probably what you're after.

ALX99 commented 4 months ago

Ahh, sorry I missed it! Thank you for the help 🙇