definition:
|
createDirectoryIfMissing :: Bool -> FilePath -> IO ()
createDirectoryIfMissing createParents path
= if createParents then createDirs parents
else createDirs [last parents]
where
parents = scanl1 (</>) $ splitDirectories $ path
createDirs [] = return ()
createDirs (d:ds) = do
exists <- doesDirectoryExist d
if exists then return () else createDirectory d
createDirs ds
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Creates a new directory with the given name if it does not already exist.
--- If the first parameter is `True` it will also create all missing
--- parent directories.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({True},_) |-> _ || ({False},_) |-> _}
|
name:
|
createDirectoryIfMissing
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Bool -> String -> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|