filebrowser/backend/files/checkLinuxStub.go

10 lines
193 B
Go
Raw Permalink Normal View History

2025-01-27 00:21:12 +00:00
//go:build !windows
// +build !windows
package files
func checkWindowsHidden(realpath string) bool {
// Non-Windows platforms don't support hidden attributes in the same way
return false
}