definition: |
removeDirectoryComplete :: String -> IO () removeDirectoryComplete dir = do exists <- doesDirectoryExist dir when exists $ system ("rm -Rf " ++ quote dir) >> return () |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Deletes a directory and its contents, if it exists, otherwise nothing --- is done. |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
removeDirectoryComplete |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
String -> Prelude.IO () |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |