File SystemWrite fileWrite a ReadableStream to a fileTo write a ReadableStream to disk, create a Response from the stream and pass it to Bun.write() .Copy MarkdownOpenWrite to stdoutThe console.log function writes to stdout and appends a line break to the printed data.Delete a fileThe Bun.file() function accepts a path and returns a BunFile instance. Use the .delete() method to delete the file.