definition:
|
getFileWithSuffix :: String -> [String] -> [String] -> IO String
getFileWithSuffix file suffixes path = do
mbfile <- findFileWithSuffix file suffixes path
maybe (error $ "File "++file++" not found in path "++
concat (intersperse [searchPathSeparator] path))
return
mbfile
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Gets the first file with a possible suffix in a list of directories.
--- An error message is delivered if there is no such file.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
getFileWithSuffix
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> [String] -> [String] -> Prelude.IO String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|