Reputation: 459
Is it possible to detect folder changes in Android? I mean detect when files are deleted or changed and know which application are doing these? In Windows you have system events for this, it's not necessary to permanently watch the files to detect changes. It's very important to know which application is doing the changes.
Upvotes: 6
Views: 10811
Reputation: 1006829
Is possible to detect folder changes in android?
You can use FileObserver
to find out when files are modified.
Is very important to know wich application is doing the changes.
That information is not available.
Upvotes: 9