blob: 5d6855bf0141adf08896dcbd6efbef68a7965d5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{- git-annex file copying
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Utility.CopyFile (copyFileExternal) where
import System.Directory (doesFileExist, removeFile)
import Utility.Conditional
import Utility.SafeCommand
import qualified Build.SysConfig as SysConfig
{- The cp command is used, because I hate reinventing the wheel,
- and because this allows easy access to features like cp --reflink. -}
copyFileExternal :: FilePath -> FilePath -> IO Bool
copyFileExternal src dest = do
whenM (doesFileExist dest) $
removeFile dest
boolSystem "cp" [params, File src, File dest]
where
params
| SysConfig.cp_reflink_auto = Params "--reflink=auto"
| SysConfig.cp_a = Params "-a"
| SysConfig.cp_p = Params "-p"
| otherwise = Params ""
|