2017-07-16 09:04:35 +00:00
|
|
|
(ns status-im.utils.fs
|
|
|
|
(:require [status-im.react-native.js-dependencies :as rn-dependencies]))
|
2016-07-18 16:29:51 +00:00
|
|
|
|
|
|
|
(defn move-file [src dst handler]
|
2017-07-16 09:04:35 +00:00
|
|
|
(-> (.moveFile rn-dependencies/fs src dst)
|
2017-05-18 22:19:46 +00:00
|
|
|
(.then #(handler nil %))
|
|
|
|
(.catch #(handler % nil))))
|
2016-08-01 10:29:10 +00:00
|
|
|
|
|
|
|
(defn read-file [path encoding on-read on-error]
|
2017-07-16 09:04:35 +00:00
|
|
|
(-> (.readFile rn-dependencies/fs path encoding)
|
2016-08-01 10:29:10 +00:00
|
|
|
(.then on-read)
|
2016-10-24 20:46:06 +00:00
|
|
|
(.catch on-error)))
|
2018-06-21 18:08:10 +00:00
|
|
|
|
|
|
|
(defn read-dir [path]
|
|
|
|
(.readDir rn-dependencies/fs path))
|