Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android File Transfer cannot see a folder created by app

I've installed "android file transfer" on mac. My app creates a folder and creates a file in it (the permissions exist in AndroidManifest.xml), writes some data into this file. File exists, I can access it using standard file manager in my android device. It shows many folders, including my folder and I can even see the contents of my file on the device.

But the problem is that "android file transfer" shows me all other folders, but not my folder and my file. I even tried create just a single file, not a directory. Same result.

Unplugging the device or re-launch of "android file transfer" didn't help.

Maybe "android file transfer" is broken tool?

like image 846
Alexander Taran Avatar asked Feb 21 '13 16:02

Alexander Taran


1 Answers

Maybe "android file transfer" is broken tool?

No.

On Android 3.0+, you need to have your file be indexed by the media scanner before it will be visible over MTP to your Mac. The static scanFile() method on MediaScannerConnection is your best option IMHO.

like image 54
CommonsWare Avatar answered Oct 20 '22 11:10

CommonsWare