(v string)
| 214 | } |
| 215 | |
| 216 | func looksLikePath(v string) bool { |
| 217 | prefix := func(s string) bool { return strings.HasPrefix(filepath.ToSlash(v), s) } |
| 218 | return prefix("./") || prefix("/") || prefix("../") || filepath.VolumeName(v) != "" |
| 219 | } |
| 220 | |
| 221 | type SyncStats struct { |
| 222 | BlobsCopied int |