MCPcopy Index your code
hub / github.com/rclone/rclone / startTrackRenames

Method startTrackRenames

fs/sync/sync.go:569–578  ·  view source on GitHub ↗

This starts the collection of possible renames

()

Source from the content-addressed store, hash-verified

567
568// This starts the collection of possible renames
569func (s *syncCopyMove) startTrackRenames() {
570 if !s.trackRenames {
571 return
572 }
573 s.trackRenamesWg.Go(func() {
574 for o := range s.trackRenamesCh {
575 s.renameCheck = append(s.renameCheck, o)
576 }
577 })
578}
579
580// This stops the background rename collection
581func (s *syncCopyMove) stopTrackRenames() {

Callers 1

runMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected