github.com/microsoft/moc@v0.17.1/pkg/fs/fs_windows.go (about) 1 // Copyright (c) Microsoft Corporation. 2 // Licensed under the Apache v2.0 license. 3 package fs 4 5 import ( 6 "os" 7 8 "github.com/hectane/go-acl" 9 ) 10 11 func Chmod(path string, mode os.FileMode) error { 12 return acl.Chmod(path, mode) 13 }