CurryInfo: currydoc-4.0.0 / CurryDoc.Main.copyDirectory

definition:
copyDirectory :: String -> String -> IO ()
copyDirectory src dst = do
  retCode <- system $ "cp -pR \"" ++ src ++ "\" \"" ++ dst ++ "\""
  when (retCode /= 0) $
    error $ "Copy failed with return code " ++ show retCode
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Recursively copies a directory structure.
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_) |-> _}
name:
copyDirectory
precedence:
no precedence defined
result-values:
_
signature:
String -> String -> Prelude.IO ()
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term