Files
OpenList/drivers/local/util_windows.go

23 lines
431 B
Go
Raw Normal View History

//go:build windows
package local
import (
"io/fs"
"path/filepath"
"syscall"
)
func isHidden(f fs.FileInfo, fullPath string) bool {
filePath := filepath.Join(fullPath, f.Name())
namePtr, err := syscall.UTF16PtrFromString(filePath)
if err != nil {
return false
}
attrs, err := syscall.GetFileAttributes(namePtr)
if err != nil {
return false
}
return attrs&syscall.FILE_ATTRIBUTE_HIDDEN != 0
}