Document directory path of Xcode Device Simulator

前端 未结 21 1660
旧巷少年郎
旧巷少年郎 2020-11-28 02:28

In iOS 7, the document directory of the iOS simulators can be found in:

/Users/Sabo/Library/Application Support/iPhone Simulator/

However,

21条回答
  •  温柔的废话
    2020-11-28 02:49

    For Swift 3.x

    if let documentsPath = FileManager.default.urls(for:.documentDirectory, in: .userDomainMask).first?.path {
            print("Documents Directory: " + documentsPath)
        }
    

提交回复
热议问题