blob: 4575fb08adf3c3a86c66adee73046fcd8a61ae9e (
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
29
30
31
|
{- git-annex file copying
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module CopyFile (copyFile) where
import Control.Monad (when)
import System.Directory (doesFileExist, removeFile)
import Utility
import qualified SysConfig
{- The cp command is used, because I hate reinventing the wheel,
- and because this allows easy access to features like cp --reflink. -}
copyFile :: FilePath -> FilePath -> IO Bool
copyFile src dest = do
e <- doesFileExist dest
when e $
removeFile dest
boolSystem "cp" [params, File src, File dest]
where
params = if SysConfig.cp_reflink_auto
then Params "--reflink=auto"
else if SysConfig.cp_a
then Params "-a"
else if SysConfig.cp_p
then Params "-p"
else Params ""
|