//go:build windows package paths const ( /* MaxSymLinkLevel on Windows is weird; Microsoft calls them "reparse points". And it changes on the Windows version you're on, but it's been 63 past Windows Server 2003/Windows XP. They're *very* EOL, so I'm completely ignoring them. https://learn.microsoft.com/en-us/windows/win32/fileio/symbolic-link-programming-consideration */ MaxSymlinkLevel uint = 63 )