Where can I find the sqlite database file path when storing data using core data in Xcode 8 ? Since the application documents directory function was removed in the app delegate in Xcode 8, is there a way to find the file path for sqlite database ? Usually I use the following code to find the directory
let urls = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)
How do we find out the sqlite path in Xcode 8 ?