iOS 시뮬레이터에서 앱 내 Document 폴더 찾기
- Xcode
- 2021. 3. 30.
간단한 xcrun simctl 명령어를 통해 실행 중인 시뮬레이터의 앱 내 Document 폴더를 확인할 수 있습니다.
1. iOS 시뮬레이터를 실행합니다.
2. `xcrun simctl` 명령어를 사용하여 현재 실행중인 iOS 시뮬레이터 앱 폴더 경로를 확인할 수 있습니다.
(my.app.identifier 대신 앱의 bundle ID를 입력합니다.)
xcrun simctl get_app_container booted my.app.identifier data
3. 현재 실행중인 iOS 시뮬레이터 앱 폴더 경로로 이동 후 Document 폴더를 확인할 수 있습니다.
cd $(xcrun simctl get_app_container booted my.app.identifier data)
open .
출처
www.8bitpickles.com/Using-xcrun-simctl-find-documents-folder-ios-simulator/
'Xcode' 카테고리의 다른 글
DerivedData 삭제하기 (0) | 2023.06.15 |
---|---|
Xcode 단축키 정리 (0) | 2020.08.21 |