R6RS Scheme:
(call-with-input-file "filename" get-string-all)
(call-with-output-file "filename"
(lambda (p) (put-string p "text")))
(call-with-port (open-input-file "filename") get-bytevector-all)
(call-with-port
(open-output-file "filename")
(lambda (p) (put-bytevector p bytes)))
