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.

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))