1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
package pathutil
import (
"fmt"
"os"
"regexp"
)
// Exists checks if a file or directory exists.
func Exists(path string) (bool, error) {
_, err := os.Stat(path)
if err == nil {
return true, nil
}
if os.IsNotExist(err) {
return false, nil
}
return false, err
}
// LinkExists checks if link exists.
func LinkExists(path string) (bool, error) {
_, err := os.Lstat(path)
if err == nil {
return true, nil
}
if os.IsNotExist(err) {
return false, nil
}
return false, err
}
// DirExists checks if a path exists and is a 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
}
// IsEmpty checks if a given path is empty.
func IsEmpty(path string) (bool, error) {
if b, _ := Exists(path); !b {
return false, fmt.Errorf("%q path does not exist", path)
}
fi, err := os.Stat(path)
if err != nil {
return false, err
}
if fi.IsDir() {
f, err := os.Open(path)
defer f.Close()
if err != nil {
return false, err
}
list, err := f.Readdir(-1)
// f.Close() - see bug fix above
return len(list) == 0, nil
}
return fi.Size() == 0, nil
}
// IsDir checks if a given path is a directory.
func IsDir(path string) (bool, error) {
fi, err := os.Stat(path)
if err != nil {
return false, err
}
return fi.IsDir(), nil
}
// ReInvalidPathChars is used to remove invalid path characters
var ReInvalidPathChars = regexp.MustCompile(`[<>:"/\\\|?\*]+`)
// RemoveInvalidPathChars removes invalid characters for path
func RemoveInvalidPathChars(s string, repl string) string {
return ReInvalidPathChars.ReplaceAllString(s, repl)
}
|