System
ADB Debugging
Package Manager
Logcat
Wireless
File Manager
ScreenShot
Network
logcat
This command is used to create directory at any given path
mkdir -m 777 /path/to/directory
Sets up permission mode
mkdir -m 777 /sdcard/tmp
mkdir -p /path/to/directory
Create parent directories as needed
mkdir -p /sdcard/tmp/sub1/sub2
mkdir path/to/directory
mkdir /sdcard/tmp
Frequently Asked Questions
This command is used to create directory at any given path
Use the command mkdir -p /sdcard/tmp/sub1/sub2 to create parent directories
If the command mkdir isn't working for you, it is probably because the parent directories that you specified in the path do not exist.