Quellcode durchsuchen

add function download-file

pull/1/head
10sr vor 11 Jahren
Ursprung
Commit
68e90c83d0
1 geänderte Dateien mit 21 neuen und 0 gelöschten Zeilen
  1. +21
    -0
      emacs.el

+ 21
- 0
emacs.el Datei anzeigen

@@ -68,6 +68,27 @@ otherwise the path where the library installed."
(locate-library lib))
locate-p)))

(defun download-file (url path &optional ok-if-already-exists)
"Download file from URL and output to PATH."
(or (ignore-errors
(url-copy-file url
path
ok-if-already-exists)
path)
(ignore-errors
(let ((curl (executable-find "curl")))
(when curl
(if (and (not ok-if-already-exists)
(file-exists-p path))
nil
(eq 0
(call-process curl
nil
nil
nil
"--output"
path))))))))

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; autoload



Laden…
Abbrechen
Speichern