This is driving me crazy...
With this simple code I keep getting file not found on my ipad device...
NSFileManager *filemgr;
filemgr = [NSFileManager defaultManager];
if ([filemgr fileExistsAtPath: @"scoreCards.dgs" ] == YES)
NSLog (@"File exists");
else
NSLog (@"File not found");
Am I missing something?