Skip to content

Instantly share code, notes, and snippets.

@seamountain
Created July 6, 2013 14:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seamountain/5940102 to your computer and use it in GitHub Desktop.
Save seamountain/5940102 to your computer and use it in GitHub Desktop.
Shell Script for Android - Check existence of the file
# Check directory existance one liner
adb shell '[ -e /sdard ]; echo $?'
# Use with a if
DIR=/sdcard1
COMMAND='[ -e '"$DIR"' ] && echo $?'
IS_EXIST=`adb shell $COMMAND`
if [ -n "$IS_EXIST" ]; then
echo "$DIR is exist."
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment