1
1
Derivar 0

Add isSpecialDirectoryEntry

Este cometimento está contido em:
Julian Ospald 2020-01-18 18:43:55 +01:00
ascendente 1f4e289903
cometimento 22ddeeadcc
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados
ID da chave GPG: 511B62C09D50CD28
1 ficheiros modificados com 16 adições e 0 eliminações

Ver ficheiro

@ -73,6 +73,7 @@ module System.Posix.FilePath (
, isAbsolute
, isValid
, makeValid
, isSpecialDirectoryEntry
, isFileName
, hasParentDir
, hiddenFile
@ -724,6 +725,21 @@ makeValid path
| otherwise = BS.map (\x -> if x == _nul then _underscore else x) path
-- | Is a FilePath valid, i.e. could you create a file like it?
--
-- >>> isSpecialDirectoryEntry "."
-- True
-- >>> isSpecialDirectoryEntry ".."
-- True
-- >>> isSpecialDirectoryEntry "/random_ path:*"
-- False
isSpecialDirectoryEntry :: RawFilePath -> Bool
isSpecialDirectoryEntry filepath
| BS.pack [_period, _period] == filepath = True
| BS.pack [_period] == filepath = True
| otherwise = False
-- | Is the given path a valid filename? This includes
-- "." and "..".
--