RosettaCodeData/Task/Truncate-a-file/Clojure/truncate-a-file.clj

6 lines
161 B
Clojure
Raw Permalink Normal View History

2018-06-22 20:57:24 +00:00
(defn truncate [file size]
(with-open [chan (.getChannel (java.io.FileOutputStream. file true))]
(.truncate chan size)))
(truncate "truncate_test.txt" 2)