Ben Chuanlong Du's Blog

It is never too late to learn.

Copy Pictures from an Android Phone to a Computer

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement! Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

You have to have a SSH server installed on the Android phone.

scp -r -P port user_name@192.168.1.105:/sdcard/DCIM . 
scp -r -P port user_name@192.168.1.105:/sdcard/DCIM/Camera .
scp -r -P port user_name@192.168.1.105:/sdcard/Download .
scp -r -P port user_name@192.168.1.105:/sdcard/Tencent/MicroMsg/WeChat .
scp -r -P port user_name@192.168.1.105:/sdcard/Tencent/MicroMsg/WeiXin .

/sdcard/DCIM /sdcard/Download /sdcard/MicroMsg

Notice that rsync does not work on an Android phone.

Comments