github.com/thy00/storage@v1.12.8/drivers/chown_windows.go (about)

     1  // +build windows
     2  
     3  package graphdriver
     4  
     5  import (
     6  	"os"
     7  	"syscall"
     8  
     9  	"github.com/containers/storage/pkg/idtools"
    10  )
    11  
    12  func platformLChown(path string, info os.FileInfo, toHost, toContainer *idtools.IDMappings) error {
    13  	return &os.PathError{"lchown", path, syscall.EWINDOWS}
    14  }