jacklinquan / usbserial4a

Python package for Android USB host serial port.
MIT License
62 stars 17 forks source link

can it copy file to usb storage? #1

Closed z-huabao closed 5 years ago

z-huabao commented 5 years ago

Hello, I make a kivy app, and want to copy a file from android to a usb storage by shutil.copy('/sdcard/***', '/storage/***/myfolder/'), but get error: permissson denied, even I have got the WRITE_EXTERNAL_STORAGE permission.

So, can I use you project to do this? how to do it?

jacklinquan commented 5 years ago

This package includes the drivers of USB serial devices for Android(E.g. USB to UART). It has nothing to do with USB storage nor any external storage. It doesn't need WRITE_EXTERNAL_STORAGE permission at all.

z-huabao commented 5 years ago

ok, thanks for your ans.