File SystemWrite fileAppend content to a fileBun implements the node:fs module, which includes the fs.appendFile and fs.appendFileSync functions for appending content to files.Copy MarkdownOpenWatch a directory for changesBun implements the node:fs module, including the fs.watch function for listening for file system changes.Write 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.