Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. 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.