2010-11-18 17:48:28 +00:00
|
|
|
{- git-annex file copying
|
|
|
|
-
|
|
|
|
- Copyright 2010 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
2011-10-04 02:24:57 +00:00
|
|
|
module Utility.CopyFile (copyFileExternal) where
|
2010-11-18 17:48:28 +00:00
|
|
|
|
2012-04-14 16:33:32 +00:00
|
|
|
import Common
|
2011-08-20 20:11:42 +00:00
|
|
|
import qualified Build.SysConfig as SysConfig
|
2010-11-18 17:48:28 +00:00
|
|
|
|
|
|
|
{- The cp command is used, because I hate reinventing the wheel,
|
|
|
|
- and because this allows easy access to features like cp --reflink. -}
|
2011-10-04 02:24:57 +00:00
|
|
|
copyFileExternal :: FilePath -> FilePath -> IO Bool
|
|
|
|
copyFileExternal src dest = do
|
2011-05-17 07:10:13 +00:00
|
|
|
whenM (doesFileExist dest) $
|
2011-01-05 02:17:18 +00:00
|
|
|
removeFile dest
|
2011-02-28 20:10:16 +00:00
|
|
|
boolSystem "cp" [params, File src, File dest]
|
2010-11-18 17:48:28 +00:00
|
|
|
where
|
2011-07-15 16:47:14 +00:00
|
|
|
params
|
|
|
|
| SysConfig.cp_reflink_auto = Params "--reflink=auto"
|
|
|
|
| SysConfig.cp_a = Params "-a"
|
|
|
|
| SysConfig.cp_p = Params "-p"
|
|
|
|
| otherwise = Params ""
|