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
👍