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.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module CopyFile (copyFile) where
|
|
|
|
|
2011-01-05 02:17:18 +00:00
|
|
|
import Control.Monad (when)
|
|
|
|
import System.Directory (doesFileExist, removeFile)
|
|
|
|
|
2010-11-18 17:48:28 +00:00
|
|
|
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
|
2011-01-05 02:17:18 +00:00
|
|
|
copyFile src dest = do
|
|
|
|
e <- doesFileExist dest
|
|
|
|
when e $
|
|
|
|
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-02-28 20:10:16 +00:00
|
|
|
params = if SysConfig.cp_reflink_auto
|
|
|
|
then Params "--reflink=auto"
|
2010-11-22 19:46:57 +00:00
|
|
|
else if SysConfig.cp_a
|
2011-02-28 20:10:16 +00:00
|
|
|
then Params "-a"
|
2010-11-22 19:46:57 +00:00
|
|
|
else if SysConfig.cp_p
|
2011-02-28 20:10:16 +00:00
|
|
|
then Params "-p"
|
|
|
|
else Params ""
|