Quantcast
Viewing all articles
Browse latest Browse all 13

Answer by Martin for Is there any way to see the file system on the iOS simulator?

Based on @zsero answer, I made a short bash script which directly opens the simulator folder of your application id. Very handy!

openappfolder.sh

#!/bin/bashAPPID=$1if OUTPUT=`xcrun simctl get_app_container booted $APPID data` ; then    open $OUTPUTelse    echo "$APPID not found!"fi 2>/dev/null

Then just

openappfolder.sh com.bundle.id

👍


Viewing all articles
Browse latest Browse all 13

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>