18 lines
		
	
	
		
			260 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			260 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// +build !windows
 | 
						|
 | 
						|
package symlink
 | 
						|
 | 
						|
import (
 | 
						|
	"path/filepath"
 | 
						|
)
 | 
						|
 | 
						|
func evalSymlinks(path string) (string, error) {
 | 
						|
	return filepath.EvalSymlinks(path)
 | 
						|
}
 | 
						|
 | 
						|
func isDriveOrRoot(p string) bool {
 | 
						|
	return p == string(filepath.Separator)
 | 
						|
}
 | 
						|
 | 
						|
var isAbs = filepath.IsAbs
 |