1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
//go:build windows // +build windows package gomplate import ( "os" "golang.org/x/sys/windows" ) func isDirError(name string) *os.PathError { return &os.PathError{ Op: "open", Path: name, Err: windows.ERROR_INVALID_HANDLE, } }