RosettaCodeData/Task/Check-that-file-exists/Objective-C/check-that-file-exists.m
2023-07-01 13:44:08 -04: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");