2
2
mirror of https://github.com/octoleo/restic.git synced 2024-11-22 21:05:10 +00:00
restic/internal/restorer/restorer_windows.go

14 lines
415 B
Go
Raw Normal View History

//go:build windows
// +build windows
package restorer
import "strings"
// toComparableFilename returns a filename suitable for equality checks. On Windows, it returns the
// uppercase version of the string. On all other systems, it returns the unmodified filename.
func toComparableFilename(path string) string {
2024-08-11 19:38:15 +00:00
// apparently NTFS internally uppercases filenames for comparison
return strings.ToUpper(path)
}