Created
April 15, 2012 10:09
-
-
Save yeahq/2391691 to your computer and use it in GitHub Desktop.
Load file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NSString *path; | |
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); | |
path = [[paths objectAtIndex:0] stringByAppendingPathComponent:@"My Directory"]; | |
path = [path stringByAppendingPathComponent:@"My Filename"]; | |
if ([[NSFileManager defaultManager] fileExistsAtPath:path]) | |
{ | |
//File exists | |
NSData *file1 = [[NSData alloc] initWithContentsOfFile:path]; | |
if (file1) | |
{ | |
[self MyFunctionWantingAFile:file1]; | |
[file1 release]; | |
} | |
} | |
else | |
{ | |
NSLog(@"File does not exist"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment