0

I want to be able to copy/move/erase/modify files on my phone and transfer them back and forth on my Windows 10 PC. Without limitations hopefully.

My phone ( Meizu Note 8 ) is not rooted, and I'm not sure if I can root it. It doesn't seem to be very popular.

I got the vague impression that I need ADB drivers which I also couldn't get, and I don't know what software to use after. This is the best I found, but it's far from official and also doesn't work: no installer, and the .inf doesn't have the install option in the context menu, which usually means the driver is not compatible.

mzso
  • 31
  • 4
  • 1
    What "limitations" are you talking about? If you are curious about ADB driver security you can use the one Google includes in it's Android SDK. For Windows you just have to modify the INF file(s) and add the USB ID of your device to it. – Robert Sep 10 '20 at 09:28
  • 1
    What filesystem you are talking about? You can access external shared storage (/sdcard) and mostly OS files (in /system, /vendor) from ADB shell or MTP. Also there are multiple alternatives to both of these native methods e.g. FTP: https://android.stackexchange.com/questions/91900. But you cannot access /data which holds a large part of OS configurations and apps data: Why are superuser permissions needed to access /data partition?. – Irfan Latif Sep 10 '20 at 10:40
  • I wanted to save/manipulate app data. Seems rather inacessible. – mzso Sep 11 '20 at 17:41

1 Answers1

0

To access app data you must be rooted.

When rooted you can access the /data folder with adb. You do adb shell. Then su to access superuser rights and then you can access /data.