7

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?

323go
  • 14,143
  • 6
  • 33
  • 41
Alexander Taran
  • 976
  • 3
  • 12
  • 25

3 Answers3

7

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.

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491
3

I just had a similar problem. For Android 6.0.1, simply restarting the device solved the problem.

rseanm
  • 31
  • 2
-1

Here is an easy tool that calls the Android Media Scanner.

https://play.google.com/store/apps/details?id=com.addz.mediascanner&hl=en

Install it on your Android device, run it, and the missing files should show up in Android File Transfer on your computer.

Ethan
  • 1