mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 01:25:14 +01:00
95d0410baa
Before this change a circular symlink would cause rclone to error out from the listings. After this change rclone will skip a circular symlink and carry on the listing, producing an error at the end. Fixes #4743
18 lines
353 B
Go
18 lines
353 B
Go
// +build windows plan9 js
|
|
|
|
package local
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
// isCircularSymlinkError checks if the current error code is because of a circular symlink
|
|
func isCircularSymlinkError(err error) bool {
|
|
if err != nil {
|
|
if strings.Contains(err.Error(), "The name of the file cannot be resolved by the system") {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|