12 lines
275 B
Go
12 lines
275 B
Go
|
package fst
|
||
|
|
||
|
import (
|
||
|
"path/filepath"
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
func deepContainsH(basepath, targpath string) (bool, error) {
|
||
|
rel, err := filepath.Rel(basepath, targpath)
|
||
|
return err == nil && rel != ".." && !strings.HasPrefix(rel, string([]byte{'.', '.', filepath.Separator})), err
|
||
|
}
|