Skip to content

Instantly share code, notes, and snippets.

@hacksoldier
Last active December 28, 2015 18:19
Show Gist options
  • Save hacksoldier/7542678 to your computer and use it in GitHub Desktop.
Save hacksoldier/7542678 to your computer and use it in GitHub Desktop.
[DATABASE] File Path
- (NSString *) filePath {
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDir = [paths objectAtIndex:0];
return [documentsDir stringByAppendingPathComponent:@"database.sql"];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment