definition:
|
ifNotExistsDo :: String -> IO () -> IO ()
ifNotExistsDo path cmd = do
fileExists <- doesFileExist path
dirExists <- doesDirectoryExist path
if fileExists || dirExists
then putStrLn $ "Skipping '" ++ path ++ "'..."
else cmd
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- checks if given path exists (file or directory) and executes
-- given action if not
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
ifNotExistsDo
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> Prelude.IO () -> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|