From c1a0623e493e096a92eaffc8a642c39c8906678e Mon Sep 17 00:00:00 2001 From: Shazron Abdullah Date: Mon, 6 Apr 2015 14:06:52 -0700 Subject: [PATCH] Added doc to download specific directory (ie Documents) from an installed app (closes #108) --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index b17b272..7e00fea 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,9 @@ The commands below assume that you have an app called `my.app` with bundle id `b // check whether an app by bundle id exists on the device (check return code `echo $?`) ios-deploy --exists --bundle_id com.apple.mobilemail + // Download the Documents directory of the app *only* + ios-deploy --download=/Documents -bundle_id my.app.id --to ./my_download_location + ## Demo * The included demo.app represents the minimum required to get code running on iOS.