then I can see 6.1 folder.
The app folder will be in 6.1/Applications/xxxxx where xxxx is the app id. or you can check all folders to find where is your app.
completionBlock
to be fired beforewaitUntilFinished
releases the control flow, then your expectations are out of alignment. The completion block is dispatched asynchronously back to the success/failure queue, so its not going to be triggered until the run loop spins.waitUntilFinished
and then access the responsePropertyList
and error
properties of the operation instead of the completion block.