0
単純なタスクのように聞こえるかもしれません。しかし、私はちょうどこのアプローチに来た - 良い方法がありますか?clojure:ディレクトリの内容を別のディレクトリにコピーする
(require '[clojure.string :as string])
(defn mk-path [& args]
(string/join "/" args))
(defn move-contents-to-dir [dir1 dir2]
"Move all the contents of dir1 into dir2, which will be created if not existing."
(doseq [file (file-seq (io/file dir1))]
(let [base-removed (string/replace (str file)
(re-pattern (str "^" (str dir1)))
"")
new-path (mk-path dir2 base-removed)]
(io/make-parents new-path)
(when (not (.isDirectory file))
(io/copy file (io/file new-path))))))