gum/file/hidden_unix.go
2022-10-07 15:38:48 -04:00

11 lines
192 B
Go

//go:build !windows
package file
import "strings"
// IsHidden reports whether a file is hidden or not
func IsHidden(file string) (bool, error) {
return strings.HasPrefix(file, "."), nil
}