Continue after error for each loop on invoke url

Continue after error for each loop on invoke url

Hello. I'm trying to upload files to workdrive using invokeurl.  It goes through a list of urls using for each.  Sometimes the file is larger than 5mb.  The whole workflow stops in that event.  I'd love a work around to upload larger files, but I don't think that is possible.  I would like to the loop to continue instead of failing with error of 
"Execution exception : 'Invoke url response content length cant be greater than 5 MB'  

Ok fine, I accept this.  So Zoho please don't tell me the file is too big.  That's not my question.  I want to know how to continue to the next url in the list.

Ex:
File A = 2mb
File B = 1.8 mb
File C = 5.6mb
File D = 2 mb
File F = 3.1 mb

Files  A & B get uploaded.  File c Errors and stops loop.  FIle D & F don't get uploaded even though they are <5mb.

~Thanks