File SystemWrite fileWrite a Blob to a fileUse Bun.write() to write a Blob to disk. The first argument is a destination , like an absolute path or BunFile instance. The second argument is the data toCopy MarkdownOpenWrite a string to a fileUse Bun.write() to write a string to disk at an absolute path . The first argument is a destination ; the second is the data to write.Write a file to stdoutBun exposes stdout as a BunFile with the Bun.stdout property. Pass it as the destination to Bun.write() .