Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X
I am reading multiple csv files one by one. If one csv file not exists error occurred, the code stopped. Instead i want to move on to reading next csv file. So i tried try catch inside for loop only for ReadCSVFile method, but that doesn't worked. What to do.
Solved! Go to Solution.
I didn't used "break" statement, still code stopping at catch. So i used "continue" statement inside catch. After error catches in catch block, code is continuing now. It is working fine now. Thanks.
Try Catch should allow you to do what you are trying to do. You aren't breaking out of the for loop at any point on purpose are you?
I didn't used "break" statement, still code stopping at catch. So i used "continue" statement inside catch. After error catches in catch block, code is continuing now. It is working fine now. Thanks.