xcode - Retrieve files from iOS app Documents folder via command line -
for project work on, have set performance metrics. way simulator writes csv files known location. retrieve theses files , make graphs out of it. piece of cake.
we have these tests running on device. in case, files created in documents directory.
while can retrieve these files via organizer, i'd more interested in automating that.
how can retrieve files iphone app via command line rather organizer?
you can access content of app computer, using https://github.com/phonegap/ios-deploy (originally https://github.com/ghughes/fruitstrap) . it's simple :
./ios-deploy --download=/documents --bundle_id com.mycompany.myapp -2 dest_dir
you can more, listing content of app, debug using lldb etc.
Comments
Post a Comment