This starts the collection of possible renames
()
| 567 | |
| 568 | // This starts the collection of possible renames |
| 569 | func (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 |
| 581 | func (s *syncCopyMove) stopTrackRenames() { |