Asking user to choose folder on my USB connected Android

Viewed 33

I am using the following code to enable the user to chose a folder:

from tkinter import Tk
from tkinter.filedialog import askdirectory
path = askdirectory(title='Select Folder') # shows dialog box and return the path
print(path)  

However, the 'Browse' window does not display the Android phone connected via USB, although I can see it via windows explorer.

How can this be enabled?

0 Answers
Related