14

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?

Suragch
  • 364,799
  • 232
  • 1,155
  • 1,198

2 Answers2

26

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:

Community
  • 1
  • 1
Suragch
  • 364,799
  • 232
  • 1,155
  • 1,198
11

You can use:

let dbPath = (documentsFolder as NSString).stringByAppendingPathComponent("db.sqlite")
atiruz
  • 2,461
  • 22
  • 34
  • 2
    Although this is working it would be great to see this method in Swifts String instead of NSString... – Ben Apr 18 '16 at 12:18