Black Lives Matter. Support the Equal Justice Initiative.

Source file src/path/filepath/symlink_unix.go

Documentation: path/filepath

     1  //go:build !windows
     2  // +build !windows
     3  
     4  package filepath
     5  
     6  func evalSymlinks(path string) (string, error) {
     7  	return walkSymlinks(path)
     8  }
     9  

View as plain text