|
definition: |
createAnalysisDir :: String -> IO ()
createAnalysisDir base = do
let anadir = takeDirectory base ++ "/" ++ analysisDir
exanadir <- doesDirectoryExist anadir
if exanadir then return ()
else createDirectory anadir
|
|
demand: |
no demanded arguments |
|
deterministic: |
deterministic operation |
|
documentation: |
Create analysis directory for a given base file name, if necessary. |
|
failfree: |
_ |
|
indeterministic: |
referentially transparent operation |
|
infix: |
no fixity defined |
|
iotype: |
{(_) |-> _}
|
|
name: |
createAnalysisDir |
|
precedence: |
no precedence defined |
|
result-values: |
_ |
|
signature: |
String -> Prelude.IO () |
|
solution-complete: |
operation might suspend on free variables |
|
terminating: |
possibly non-terminating |
|
totally-defined: |
possibly non-reducible on same data term |