diff --git a/src/ios/CDVCamera.m b/src/ios/CDVCamera.m index bf02ca2..1dca07c 100644 --- a/src/ios/CDVCamera.m +++ b/src/ios/CDVCamera.m @@ -398,11 +398,12 @@ static NSString* toBase64(NSData* data) { NSString* docsPath = [NSTemporaryDirectory()stringByStandardizingPath]; NSFileManager* fileMgr = [[NSFileManager alloc] init]; // recommended by Apple (vs [NSFileManager defaultManager]) to be threadsafe NSString* filePath; - - // generate unique file name - int i = 1; + + // unique file name + NSTimeInterval timeStamp = [[NSDate date] timeIntervalSince1970]; + NSNumber *timeStampObj = [NSNumber numberWithDouble: timeStamp]; do { - filePath = [NSString stringWithFormat:@"%@/%@%03d.%@", docsPath, CDV_PHOTO_PREFIX, i++, extension]; + filePath = [NSString stringWithFormat:@"%@/%@%ld.%@", docsPath, CDV_PHOTO_PREFIX, [timeStampObj longValue], extension]; } while ([fileMgr fileExistsAtPath:filePath]); return filePath;