Skip to content
Advertisement

Can’t use FileObserver to Observe Files Inside a Folder

I want to observe if any file/folder is added inside /storage/emulated/0/DCIM/Camera using FileObserver in a service, but it didn’t work. Please tell me if there is anything wrong in my code 🙏. Here is the source code:

AndroidManifest.xml

I added the uses-permission and service tags:

JavaScript

LogWatcherService.java

I added FileObserver inside the service, and overrided its onEvent method:

JavaScript

MainActivity.java

I start the service when opening the app when storage permission is granted:

JavaScript

I started the application and there is onStartCommand on the log. But the onEvent method is never called when changes happen.

Advertisement

Answer

I solved this problem by myself. I think the problem is because my Android Studio API level is 30, which “Environment.getExternalStorageDirectory()” is deprecated. So, to solve that I added the following attribute to the application tag in AndroidManifest.xml

JavaScript

Now, my FileObserver is working as expected

Advertisement