Skip to main content
deleted 24 characters in body
Source Link

If you have adb installed in your PC and USB debugging enabled in your Android device, it will be easy.

First download ADB: From this official link Install it and launch it

Launch adb in a terminal, and writeWrite:

  1. adb devices you shouldto see if your device if it'sis connected
  2. adb pull /sdcard this will literally extract everything from your device files, best way possible. If you want a specific folder target you write adb pull /sdcard/your_target, imagine it's the camera, then your target is DCIM/Camera So you'd write adb pull /sdcard/DCIM/Camera You let it work, and it shows the actual percentage of the work being done.

That is how I move large folders, it maybe a bit strange but it always works perfectly.

If you have adb installed in your PC and USB debugging enabled in your Android device, it will be easy.

First download ADB: From this official link Install it

Launch adb in a terminal, and write:

  1. adb devices you should see your device if it's connected
  2. adb pull /sdcard this will literally extract everything from your device files, best way possible. If you want a specific folder target you write adb pull /sdcard/your_target, imagine it's the camera, then your target is DCIM/Camera So you'd write adb pull /sdcard/DCIM/Camera You let it work, and it shows the actual percentage of the work being done.

That is how I move large folders, it maybe a bit strange but it always works perfectly.

If you have adb installed in your PC and USB debugging enabled in your Android device, it will be easy.

First download ADB: From this official link Install it and launch it

Write:

  1. adb devices to see if your device is connected
  2. adb pull /sdcard this will literally extract everything from your device files, best way possible. If you want a specific folder target you write adb pull /sdcard/your_target, imagine it's the camera, then your target is DCIM/Camera So you'd write adb pull /sdcard/DCIM/Camera You let it work, and it shows the actual percentage of the work being done.

That is how I move large folders, it maybe a bit strange but it always works perfectly.

added 365 characters in body
Source Link

If you have adb installed in your PC and USB debugging enabled in your Android device, it will be easy.

First download ADB: From this official link Install it

Launch adb in a terminal, and write:

  1. adb devices you should see your device if it's connected
  2. adb pull /sdcard this will literally extract everything from your device files, best way possible. If you want ana specific folder target you write adb pull /sdcard/your_target, imagine it's the camera, then your target is DCIM/Camera YouSo you'd write adb pull /sdcard/DCIM/Camera You let it work, and it shows the actual percentage of the work being done.

That is how I move large folders, it maybe a bit strange but it always works perfectly.

If you have adb installed and USB debugging enabled, it will be easy. Launch adb in a terminal, and write:

  1. adb devices you should see your device if it's connected
  2. adb pull /sdcard this will literally extract everything from your device files, best way possible. If you want an specific folder target you write adb pull /sdcard/your_target, imagine it's the camera, then your target is DCIM/Camera You write adb pull /sdcard/DCIM/Camera You let it work, and it shows the actual percentage of the work being done.

If you have adb installed in your PC and USB debugging enabled in your Android device, it will be easy.

First download ADB: From this official link Install it

Launch adb in a terminal, and write:

  1. adb devices you should see your device if it's connected
  2. adb pull /sdcard this will literally extract everything from your device files, best way possible. If you want a specific folder target you write adb pull /sdcard/your_target, imagine it's the camera, then your target is DCIM/Camera So you'd write adb pull /sdcard/DCIM/Camera You let it work, and it shows the actual percentage of the work being done.

That is how I move large folders, it maybe a bit strange but it always works perfectly.

Source Link

If you have adb installed and USB debugging enabled, it will be easy. Launch adb in a terminal, and write:

  1. adb devices you should see your device if it's connected
  2. adb pull /sdcard this will literally extract everything from your device files, best way possible. If you want an specific folder target you write adb pull /sdcard/your_target, imagine it's the camera, then your target is DCIM/Camera You write adb pull /sdcard/DCIM/Camera You let it work, and it shows the actual percentage of the work being done.