summaryrefslogtreecommitdiffstats
path: root/hugolib/path.go
diff options
context:
space:
mode:
Diffstat (limited to 'hugolib/path.go')
-rw-r--r--hugolib/path.go34
1 files changed, 0 insertions, 34 deletions
diff --git a/hugolib/path.go b/hugolib/path.go
deleted file mode 100644
index 03a5dba04..000000000
--- a/hugolib/path.go
+++ /dev/null
@@ -1,34 +0,0 @@
-package hugolib
-
-import (
- "os"
- "strings"
-)
-
-func fileExt(path string) (file, ext string) {
- if strings.Contains(path, ".") {
- i := len(path) - 1
- for path[i] != '.' {
- i--
- }
- return path[:i], path[i+1:]
- }
- return path, ""
-}
-
-func replaceExtension(path string, newExt string) string {
- f, _ := fileExt(path)
- return f + "." + newExt
-}
-
-// Check if Exists && is Directory
-func dirExists(path string) (bool, error) {
- fi, err := os.Stat(path)
- if err == nil && fi.IsDir() {
- return true, nil
- }
- if os.IsNotExist(err) {
- return false, nil
- }
- return false, err
-}