Is it possible to read file stream from behind?

I want to read file from behind by stream.
Is it possible?

Thanks

Well, it’s like reading an infinite list of numbers, but by the end :slight_smile:

1 Like

If you know the size of the file you could use a file handle and seek backwards and emit chunks and wrap the whole thing in Stream.resource/3

1 Like

Thanks!