George Of That Bush wrote:
> Through Android Emulator, I am trying to create a folder using dev
> tools > Terminal Emulator.
> 
> The terminal emulator gets launched with the SHELL PROMPT.
> 
> (1)
> However, when I try to type a command, at the bottom of the screen,
> some suggestions are shown - but in CHINESE CHARACTERS. Dont know why
> CHINESE?

Settings > Language & Keyboard, and toggle off the keyboards you do not
want.

> I need to go to the sdcard folder using "cd sdcard" and create a
> directory using "mkdir" and then copy some files into it.
> 
> Please let me know if I am going wrong somewhere?
> 
> Also, is there any other way of creating a directory inside "sdcard"
> folder?

Run:

adb shell

from your development PC's terminal to get a shell prompt on your emulator.

Or, run:

adb shell "mkdir /sdcard/whateverYouWant"

To just execute your command.

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://twitter.com/commonsguy

Android 2.x Programming Books: http://commonsware.com/books

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to