--- title: Write a Response to a file sidebarTitle: Write Response mode: center --- Use [`Bun.write()`](/runtime/file-io#writing-files-bun-write) to write a `Response` to disk. Bun writes the body of the `Response` to the destination. The first argument is a _destination_, like an absolute path or `BunFile` instance. The second argument is the _data_ to write. ```ts const result = await fetch("https://bun.com"); const path = "./file.txt"; await Bun.write(path, result); ``` --- See [`Bun.write()`](/runtime/file-io#writing-files-bun-write).