Function: gnus-copy-file

gnus-copy-file is an interactive and byte-compiled function defined in gnus-util.el.gz.

Signature

(gnus-copy-file FILE &optional TO)

Documentation

Copy FILE to TO.

Probably introduced at or before Emacs version 26.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-util.el.gz
(defun gnus-copy-file (file &optional to)
  "Copy FILE to TO."
  (interactive
   (list (read-file-name "Copy file: " default-directory)
	 (read-file-name "Copy file to: " default-directory)))
  (unless to
    (setq to (read-file-name "Copy file to: " default-directory)))
  (copy-file file to))