diff --git a/ChangeLog b/ChangeLog
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,9 @@
 2017-03-06  Evan Cofsky  <evan@theunixman.com>
 
-	* liblawles.cabal: 0.17.2
+	* liblawless.cabal (0.17.3): 0.17.3
+	* Source/Path.hs: Export more pathtype functions.
+
+	* liblawles.cabal (0.17.2): 0.17.2
 	* Source/Path.hs: Export the path operators.
 	* test.sh: Build and run tests.
 	* hackage.sh: Upload tagged package to hackage.
diff --git a/Source/Path.hs b/Source/Path.hs
--- a/Source/Path.hs
+++ b/Source/Path.hs
@@ -15,7 +15,81 @@
     P.rootDir,
     P.currentDir,
     P.emptyFile,
-    parse,
+    P.splitPath,
+    P.dropExtension,
+    P.dropExtensions,
+    P.dropFileName,
+    P.replaceExtension,
+    P.replaceBaseName,
+    P.replaceDirectory,
+    P.replaceFileName,
+    P.addExtension,
+    P.combine,
+    P.dropExtension,
+    P.dropExtensions,
+    P.dropFileName,
+    P.replaceExtension,
+    P.replaceBaseName,
+    P.replaceDirectory,
+    P.replaceFileName,
+    P.splitExtension,
+    P.splitExtensions,
+    P.splitFileName,
+    P.splitDirName,
+    P.takeBaseName,
+    P.takeDirectory,
+    P.takeSuperDirectory,
+    P.takeExtension,
+    P.takeExtensions,
+    P.takeFileName,
+    P.takeDirName,
+    P.mapFileName,
+    P.mapFileNameF,
+
+    -- * Auxillary Manipulation Functions
+    P.equalFilePath,
+    P.joinPath,
+    P.normalise,
+    P.splitPath,
+    P.makeRelative,
+    P.makeRelativeMaybe,
+    P.makeAbsolute,
+    P.makeAbsoluteFromCwd,
+    P.dynamicMakeAbsolute,
+    P.dynamicMakeAbsoluteFromCwd,
+    P.genericMakeAbsolute,
+    P.genericMakeAbsoluteFromCwd,
+    P.pathMap,
+    P.dirFromFile,
+    P.fileFromDir,
+    P.toFileDir,
+    P.fromFileDir,
+    P.fileFromFileDir,
+    P.dirFromFileDir,
+
+    -- * Path Predicates
+    P.isAbsolute,
+    P.isRelative,
+    P.isAbsoluteString,
+    P.isRelativeString,
+    P.hasAnExtension,
+    P.hasExtension,
+
+    -- * Separators
+    P.extSeparator,
+    P.searchPathSeparator,
+    P.isExtSeparator,
+    P.isSearchPathSeparator,
+
+    -- * Generic Manipulation Functions
+    P.genericAddExtension,
+    P.genericDropExtension,
+    P.genericDropExtensions,
+    P.genericSplitExtension,
+    P.genericSplitExtensions,
+    P.genericTakeExtension,
+    P.genericTakeExtensions,
+    P.parse,
     toText,
     AbsFile,
     RelFile,
@@ -30,7 +104,8 @@
     absRelFile,
     absRelDir,
     (</>),
-    (<.>)
+    (<.>),
+    (<++>),
     ) where
 
 import Lawless hiding ((<.>))
@@ -41,13 +116,15 @@
     AbsDir,
     RelDir,
     AbsRelFile,
-    AbsRelDir
+    AbsRelDir,
+    (</>),
+    (<.>),
+    (<++>)
     )
 import qualified System.Path as P
 import qualified System.Path.PartClass as C
 import Aeson hiding (parse)
 import Control.Monad.Fail
-import System.Path ((</>), (<.>))
 
 parse ∷ (IsText t, C.AbsRel ar, C.FileDir fd) ⇒ t → Either Text (P.Path ar fd)
 parse t = case P.parse (t ^. unpacked) of
diff --git a/liblawless.cabal b/liblawless.cabal
--- a/liblawless.cabal
+++ b/liblawless.cabal
@@ -1,5 +1,5 @@
 name:                liblawless
-version:             0.17.2
+version:             0.17.3
 synopsis:            Prelude based on protolude for GHC 8 and beyond.
 license:             GPL-3
 license-file:        LICENSE
