github.com/kolbycrouch/elvish@v0.14.1-0.20210614162631-215b9ac1c423/pkg/cli/lscolors/stat_windows.go (about)

     1  package lscolors
     2  
     3  import "os"
     4  
     5  func isMultiHardlink(info os.FileInfo) bool {
     6  	// Windows supports hardlinks, but it is not exposed directly. We omit the
     7  	// implementation for now.
     8  	// TODO: Maybe implement it?
     9  	return false
    10  }