diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
 # Changelog for path-utils
 
+## (v0.1.1.0)
+
+* Add `toFilePathText`.
+
 ## (v0.1.0.0)
 
 * Add handful of path utility functions.
diff --git a/path-utils.cabal b/path-utils.cabal
--- a/path-utils.cabal
+++ b/path-utils.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           path-utils
-version:        0.1.0.0
+version:        0.1.1.0
 synopsis:       Handful of simple utility functions for the path library.
 description:    Handful of simple utility functiosn for the path library.
 category:       Filesystem
diff --git a/src/Path/Utils.hs b/src/Path/Utils.hs
--- a/src/Path/Utils.hs
+++ b/src/Path/Utils.hs
@@ -10,6 +10,7 @@
   (</$>)
 , changeDir
 , splitPath
+, toFilePathText
 ) where
 
 import Control.Monad.Catch
@@ -29,3 +30,7 @@
 -- | Split a relative path into text sections.
 splitPath :: Path Rel t -> [Text]
 splitPath = fmap T.pack . splitOn "/" . toFilePath
+
+-- | Convert a `Path` to `Text`.
+toFilePathText :: Path b t -> Text
+toFilePathText = T.pack . toFilePath
