checkstring :: [String] -> Int -> [String]
checkstring p n = do z <- doesFileExist (p !! n)
if z
then p
else error $ "'" ++ (p !! n) ++ "' file path does not exist"
它通过查看“n”来检查字符串中的元素(因此如果 n = 2,它将检查列表中的第二个字符串是否存在)然后查看它是否存在。如果确实存在,它将返回原始字符串列表,如果不存在,则会出错。为什么要这样做?:
Couldn't match expected type `[t0]' with actual type `IO Bool'
In the return type of a call of `doesFileExist'
In a stmt of a 'do' expression: z <- doesFileExist (p !! n)