Languages

Menu
Sites
Language
How to copy files from emulator/device?

Hi,

There are files which I downloaded using Tizen emulator. I can see them using MyFiles application in Phone/Downloads/ folder. Does anybody know how can I copy them on my windows PC?

Responses

5 Replies
Alex Ashirov

Hi,

The ‘Phone/Downloads/’ is mapped onto the ‘/opt/usr/media/Downloads/’ folder in Emulator. So, you can access the folder using Connection Explorer from  IDE. You need to find required file in the Connection Explorer, right click on it and select “Pull the selected content” from context menu.

Alex Dem

Hi,
Also you could use C:\tizen-sdk\tools>sdb -e root on
or (-d) for device to observe all File System in 'root' mode in Connection Explorer.
Alexey.

Saurabh Araiyer

For reference, you may see: https://developer.tizen.org/documentation/articles/smart-development-bridge

Alex Ashirov

HI,

BTW, it’s may be more simple for you to send the files by e-mail from device/emulator to your PC. You need to select “Share” button from MyFiles application, check files what you want to send, press “Share” once again and select “Email” option from menu. Of course, you e-mail account should be configured before.

T S

Hi,
Please follow below steps to pull the file to Windows PC.

1. C:\tizen-sdk\tools\sdb -d root on
                 -e for emulator
                 -d for device

2: C:\tizen-sdk\tools\sdb -d pull <remote> <local>
               e.g: C:\tizen-sdk\tools\sdb -d pull /opt/usr/media/Downloads/*.txt  data.txt

~Sanjana T S