The glamourous AI coding agent for your favourite terminal 💘
1//go:build windows 2 3package fsext 4 5// Owner retrieves the user ID of the owner of the file or directory at the 6// specified path. 7func Owner(path string) (int, error) { 8 return -1, nil 9}