Hello @Damari, thank you for reaching out to us, although it looks like @Milena has got you covered!
As an alternative, if you have enabled developer options in your device and have Android SDK and ADB up and running on your computer, you can make use of the ADB push and pull commands to transfer files.
Pull a file from your Android device using:
adb pull <path-to-file>
Add the location of the file you are pulling and the location you want it to go.
Ex: adb pull /sdcard/audio.mp3 C:\Users\Emma\Desktop
If you choose to omit the local save location, the file will be saved in the same location as your adb.exe
Push a file to your Android device using:
adb push <path-to-file>
Add the local location of the file and the location to save it on the Android device.
Ex: adb push C: \Users\Emma\Desktop\audio.mp3 /sdcard/
Try it out, and keep me posted on any updates.
Have a great day!
Emma Jones
Hexnode UEM
-
This reply was modified 2 years, 10 months ago by Emma.
-
This reply was modified 2 years, 10 months ago by Emma.
-
This reply was modified 2 years, 10 months ago by Emma.