gum/file/hidden_unix.go

11 lines
193 B
Go
Raw Normal View History

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