RosettaCodeData/Task/Check-that-file-exists/Objective-C/check-that-file-exists.m
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

3 lines
224 B
Objective-C

NSFileManager *fm = [NSFileManager defaultManager];
NSLog(@"input.txt %s", [fm fileExistsAtPath:@"input.txt"] ? @"exists" : @"doesn't exist");
NSLog(@"docs %s", [fm fileExistsAtPath:@"docs"] ? @"exists" : @"doesn't exist");