mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
24 lines
451 B
Go
24 lines
451 B
Go
//go:build !windows && !plan9 && !js
|
|
// +build !windows,!plan9,!js
|
|
|
|
package local
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
)
|
|
|
|
// isCircularSymlinkError checks if the current error code is because of a circular symlink
|
|
func isCircularSymlinkError(err error) bool {
|
|
if err != nil {
|
|
if newerr, ok := err.(*os.PathError); ok {
|
|
if errcode, ok := newerr.Err.(syscall.Errno); ok {
|
|
if errcode == syscall.ELOOP {
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return false
|
|
}
|