178

How am I able to push .txt files to the emulator using Android Studio?

xpt
  • 20,363
  • 37
  • 127
  • 216
Girish
  • 2,196
  • 2
  • 18
  • 24

11 Answers11

286

One easy way is to drag and drop. It will copy files to /sdcard/Download. You can copy whole folders or multiple files. Make sure that "Enable Clipboard Sharing" is enabled. (under ...->Settings; see toggle in screenshot)

enter image description here

johnml1135
  • 4,519
  • 3
  • 23
  • 18
157

Update (May 2020): Android studio have new tool called Device File Explorer. You can access it in two way:

  1. By clicking on Device File Explorer icon in right bottom corner of android studio window.
  2. If you could not find its icon, inside Android Studio press shift button twice. Quick search window will appear, then type Device File in it and Device File Explorer will appear in search result and you can click it. open Device File Explorer

Then you can navigate to folder which you want to push your file in it. Right click on that folder and select upload(or press Ctrl+Shift+O). Select file you want to upload and it will upload file to desired location.

enter image description here

Push file using adb.exe:

In Android 6.0+, you should use same process but your android application cannot access files which pushed inside SDCARD using DDMS File Explorer. It is the same if you try commands like this:

adb push myfile.txt /mnt/sdcard/myfile.txt

If you face EACCES (Permission denied) exception when you try to read file inside your application, it means you have no access to files inside external storage, since it requires a dangerous permission.

For this situation, you need to request granting access manually using new permission system in Android 6.0 and upper version. For details you can have a look in android tutorial and this link.

Solution for old android studio version:

If you want to do it using graphical interface you can follow this inside android studio menus:

Tools --> Android --> Android Device Monitor

enter image description here

Afterward, Android Device Monitor(DDMS) window will open and you can upload files using File Explorer. You can select an address like /mnt/sdcard and then push your file into sdcard. enter image description here

VSB
  • 9,825
  • 16
  • 72
  • 145
  • This worked for the copy logic. However - using AS-ide 2.3 - in DDMS, the /mnt/sdcard will not appear as an expandable folder and appears as *empty* - even after restarting DDMS. I verified the copy command worked when using `adb shell` to navigate to that folder. Thank you for pointer to solution – Gene Bo May 15 '17 at 18:51
  • 1
    Also you may select a folder, then right click and choose "Upload...", then select a path to a source folder or file. – CoolMind Feb 21 '18 at 17:04
  • got permission denied when pushing file to system, any idea? – Beeing Jk May 17 '18 at 01:36
  • 11
    old solution, thers no 'Android' tab under tools – Shirish Herwade Jul 24 '18 at 14:46
93

You can use the ADB via a terminal to pass the file From Desktop to Emulator.

adb push <file-source-local> <file-destination-remote>

You can also copy file from emulator to Desktop

adb pull <file-source-remote> <file-destination-local>

How ever you can also use the Android Device Monitor to access files. Click on the Android Icon which can be found in the toolbar itself. It'll take few seconds to load. Once it's loaded, you can see a tab named "File Explorer". Now you can pull/push files from there.

theapache64
  • 10,926
  • 9
  • 65
  • 108
66

Android Device monitor is no longer available in android studio.

If you are using android studio 3.0 and above.

  1. Go to "Device File Explorer" which is on the bottom right of android studio.
  2. If you have more than one device connected, select the device you want from the drop-down list on top.
  3. mnt>sdcard is the location for SD card on the emulator.
  4. Right click on the folder and click Upload. See the image below.

Note: You can upload folder as well not just individual files.

Device File Explorer

Theo
  • 57,719
  • 8
  • 24
  • 41
Prakash
  • 7,794
  • 4
  • 48
  • 44
  • This. I saved my file in the `sdcard/Download` folder, then in the Emulator's file chooser application, use the Hamburger Menu and select the Downloads folder. – lukegjpotter May 01 '18 at 10:34
  • 2
    i put the files into sdcard/Download but emulators file picker shows nothing – Rafael Lima May 07 '18 at 21:15
  • 3
    It doesn't work. storage/emulated/ path is where we need to put our files but it says "Permission denied". – Darush Sep 18 '18 at 12:15
12

I am using Android Studio 3.3.

Go to View -> Tools Window -> Device File Explorer. Or you can find it on the Bottom Right corner of the Android Studio.

enter image description here

If the Emulator is running, the Device File Explorer will display the File structure on Emulator Storage.

enter image description here

Here you can right click on a Folder and select "Upload" to place the file

enter image description here

I usually use mnt - sdcard - download folder. Thanks.

Community
  • 1
  • 1
Jitendra Sawant
  • 648
  • 7
  • 14
  • Each Android version has a different folder can you tell us about each version like 30, 29, 28, 27, 26... that will be useful information – DragonFire Apr 17 '21 at 03:24
9

Open command prompt and give the platform-tools path of the sdk. Eg:- C:\Android\sdk\platform-tools> Then type 'adb push' command like below,

C:\Android\sdk\platform-tools>adb push C:\MyFiles\fileName.txt /sdcard/fileName.txt

This command push the file to the root folder of the emulator.

REMITH
  • 1,049
  • 12
  • 12
9

After you drag and drop your files from Desktop to Emulator like this answer here : https://stackoverflow.com/a/44885506/3904109

Your location of files will be

Android 19, 21, 22 /storage/sdcard/Download

Android 23, 24, 25, 26, 27, 28, 29, 30 /storage/emulated/0/Download

DragonFire
  • 3,722
  • 2
  • 38
  • 51
4

refer johnml1135 answer, but not fully work.

after self investigate, using official docs, it works now:

and use Drag and Drop actually worked, but use android self installed app Download, then you can NOT find the copied file, for not exist so called /sdcard/Download folder.

finally using other file manager app, like

ES File Explorer

then can see the really path is

/storage/emulated/0/Download/

which contains the copied files, like

/storage/emulated/0/Download/chenhongyu_lixiangsanxun.mp3

after drag and drop more mp3 files:

General Grievance
  • 4,555
  • 31
  • 31
  • 45
crifan
  • 12,947
  • 1
  • 71
  • 56
0

adb push [file path on your computer] [file path on your mobile]

XC.xc
  • 101
  • 1
  • 7
0

on windows 10 , android studio emulator.
be on the directory yourFile.xml is.
on terminal, command:

 adb push yourFile.xml \C:\Users\yourUN\.android\avd\Pixel_4_API_29.avd\mnt\sdcard

Pixel_4_API_29 is the emulator name , choose the device you are using on emulator

aris
  • 409
  • 6
  • 8
0

Just need to drag and drop to the corresponding directory in the ADB