go_sysutils/paths/consts_windows.go
brent saner acb4352113
v1.14.4
UPDATED:
* docs for sysutils/paths now link to references.
2025-10-08 12:36:19 -04:00

16 lines
426 B
Go

//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 earlier cases.
https://learn.microsoft.com/en-us/windows/win32/fileio/symbolic-link-programming-consideration
*/
MaxSymlinkLevel uint = 63
)