-
Notifications
You must be signed in to change notification settings - Fork 331
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
macOS and linux: no way to correlate rename events #278
Comments
This is exactly what the macOS API is reporting, I'm afraid. There should be a way to correlate multiple rename events using |
@emcrisostomo yes agreed, I've actually patched the |
Thanks for the feedback @christian-schulze |
I've update the issue since I've fixed this in the feature branch for both the |
Merged into |
File move operations on MacOS are reported by
fswatch
as pairs ofRenamed
events. The first event being the source and the second event being the destination.Given the following scenario, the events are not reported in the correct order:
Actual output:
Given these results, there is no way to correlate event 3 with 1, and event 5 with 2.
If the
Created
andRenamed
events were not merged into one event, then this might behave as expected. Is this something that fswatch is doing explicitly? Or is this what the MacOS API is reporting?The text was updated successfully, but these errors were encountered: