Function: f-append-bytes
f-append-bytes is a byte-compiled function defined in f.el.
Signature
(f-append-bytes DATA PATH)
Documentation
Append binary DATA to PATH.
If PATH does not exist, it is created.
Other relevant functions are documented in the f group.
Shortdoc
;; f
(f-append-bytes "path/to/file" (unibyte-string 72 101 108 108 111 32 119 111 114 108 100))
-> [it depends]
Source Code
;; Defined in ~/.emacs.d/elpa/f-20241003.1131/f.el
(defun f-append-bytes (data path)
"Append binary DATA to PATH.
If PATH does not exist, it is created."
(f--write-bytes data path :append))