Add takeAllParents

Este commit está contenido en:
Julian Ospald 2020-01-26 20:00:46 +01:00
padre 7d0ca1c230
commit b7cd5ba857
No se encontró ninguna clave conocida en la base de datos para esta firma
ID de clave GPG: 511B62C09D50CD28
Se han modificado 1 ficheros con 16 adiciones y 0 borrados

Ver fichero

@ -59,6 +59,7 @@ module System.Posix.FilePath (
, splitPath
, joinPath
, splitDirectories
, takeAllParents
-- * Trailing slash functions
, hasTrailingPathSeparator
@ -500,6 +501,21 @@ splitDirectories x
splitter = filter (not . BS.null) . BS.split pathSeparator
-- |Get all parents of a path.
--
-- >>> takeAllParents "/abs/def/dod"
-- ["/abs/def","/abs","/"]
-- >>> takeAllParents "/foo"
-- ["/"]
-- >>> takeAllParents "/"
-- []
takeAllParents :: RawFilePath -> [RawFilePath]
takeAllParents p
| np == BS.singleton pathSeparator = []
| otherwise = takeDirectory np : takeAllParents (takeDirectory np)
where
np = normalise p
------------------------
-- Trailing slash functions