2014-10-06 21:14:23 +00:00
|
|
|
{-# OPTIONS_HADDOCK ignore-exports #-}
|
|
|
|
|
2014-10-10 15:40:08 +00:00
|
|
|
module System.FileSystem.FileExt where
|
2014-09-30 22:05:29 +00:00
|
|
|
|
2014-10-10 15:40:08 +00:00
|
|
|
import MyPrelude
|
2014-10-07 17:22:37 +00:00
|
|
|
|
2014-09-30 22:05:29 +00:00
|
|
|
|
2014-10-01 21:02:43 +00:00
|
|
|
-- |Compare the extension of a file with the given String.
|
2014-10-01 18:18:45 +00:00
|
|
|
cmpExt :: String -> FilePath -> Bool
|
2014-10-06 00:26:04 +00:00
|
|
|
cmpExt checkExt = (==) checkExt . getExt
|
2014-10-01 18:18:45 +00:00
|
|
|
|
|
|
|
|
2014-10-01 21:02:43 +00:00
|
|
|
-- |Get the extension of a file.
|
2014-10-01 18:18:45 +00:00
|
|
|
getExt :: FilePath -> String
|
2014-10-06 00:26:04 +00:00
|
|
|
getExt fp
|
2014-10-09 22:19:05 +00:00
|
|
|
| hasExt fp = last .
|
|
|
|
splitBy (== '.') .
|
|
|
|
last .
|
|
|
|
splitBy (== '/') $
|
|
|
|
fp
|
2014-10-06 00:26:04 +00:00
|
|
|
| otherwise = ""
|
|
|
|
|
|
|
|
|
|
|
|
-- |Check if the file has an extension.
|
|
|
|
hasExt :: FilePath -> Bool
|
2014-10-06 22:41:03 +00:00
|
|
|
hasExt = (>1) . length . splitBy (== '.')
|