瀏覽代碼

add function download-file

pull/1/head
10sr 11 年之前
父節點
當前提交
68e90c83d0
共有 1 個檔案被更改,包括 21 行新增0 行删除
  1. +21
    -0
      emacs.el

+ 21
- 0
emacs.el 查看文件

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



Loading…
取消
儲存