readable

Preadable
Bun

Symbol

S3File.readable

readonly readable: ReadableStream

Gets a readable stream of the file's content. Useful for processing large files without loading them entirely into memory.

// Basic streaming read
    const stream = file.stream();
    for await (const chunk of stream) {
      console.log('Received chunk:', chunk);
    }