wizard-wipeout/src-server/Server/Util.hs

14 lines
307 B
Haskell
Raw Normal View History

2023-12-09 12:58:59 +00:00
module Server.Util where
import Control.Exception
import System.Directory
import System.IO.Error
removeIfExists :: FilePath -> IO ()
removeIfExists fileName = removeFile fileName `catch` handleExists
where handleExists e
| isDoesNotExistError e = return ()
| otherwise = throwIO e