copy file from SDcard on ESP32 to PC #9615
Answered
by
jimmo
robhamerling
asked this question in
Using MicroPython
-
With mpremote it is easy to copy files from ESP32 to PC, but how to copy files which are located on an SDCard on the ESP32? |
Beta Was this translation helpful? Give feedback.
Answered by
jimmo
Oct 14, 2022
Replies: 1 comment 3 replies
-
@robhamerling The same way -- mpremote accesses the device filesystem via VFS, so use the same path that the device uses. e.g. if the sdcard is mounted at /sdcard then |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
peterhinch
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@robhamerling The same way -- mpremote accesses the device filesystem via VFS, so use the same path that the device uses. e.g. if the sdcard is mounted at /sdcard then
mpremote cp :/sdcard/file.txt file.txt
should work.