Skip to content

Instantly share code, notes, and snippets.

@bsdshell
Last active August 29, 2015 14:26
Show Gist options
  • Save bsdshell/bf2b9620ad58b4ef0835 to your computer and use it in GitHub Desktop.
Save bsdshell/bf2b9620ad58b4ef0835 to your computer and use it in GitHub Desktop.
get document directory, nsdocumentdirectory
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *path = [documentsDirectory stringByAppendingPathComponent:@"logfile.txt"];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment