I'm getting the error
'stringByAppendingPathComponent' is unavailable: Use 'stringByAppendingPathComponent' on NSString instead.
when I try to do
let documentsFolder = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true)[0] as String
let databasePath = documentsFolder.stringByAppendingPathComponent("test.sqlite")
This apparently worked for people before, but it doesn't work for me now in Xcode 7 beta 5.
This thread on the Apple Developer Forums had the suggestion to use an extension or do a direct cast to NSString
. But if I do convert it to an NSString
let databasePath = documentsFolder.stringByAppendingPathComponent("test.sqlite" as NSString)
then I get the error
'NSString' is not implicitly convertible to 'String'...
and it gives me the option to "fix-it" by inserting as String
, which brings us back to the original error.
This also happens for stringByAppendingPathExtension
.
What do I do?
You can create a URL rather rather than a String path.
let documentsURL = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first
let fileURL = documentsURL?.appendingPathComponent("test.sqlite")
If you absolutely need the path, then you can get it like this:
guard let path = fileURL?.path else {
return
}
print(path) // path will exist at this point
There was some discussion in the thread you mentioned that Apple may be purposely guiding people toward using URLs rather than String paths.
See also:
You can use:
let dbPath = (documentsFolder as NSString).stringByAppendingPathComponent("db.sqlite")
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With