In the Devices tab, select the emulator that you want to view the file system for.Using DDMS UI: Here's how to work with emulator's file system using DDMS. Here is an example: adb push foo.txt /sdcard/foo.txtįoo.txt will be pushed (copied) to the emulator.Ģ. Here is path of file / folder on your desktop and is path of file / folder on your emulator. Here's the syntax to copy files to or from an Emulator/Device Instance:Ĭopy from desktop to emulator: adb push Ĭopy from emulator to desktop: adb pull You have to use adb push to copy files from Desktop to Emulator and adb pull for the reverse. Using command line: Here's how you can copy files to an SD card image.