use Try() and catch() to skip over crashing sequences. Using try and catch can slow down processor intensive loops, but for a batch exporter it should be fine. Ffor example say MyMaxFiles is an Array of max file names. The following code will try to export all files. If there is an exception, the loop will skip the error…
I've written a batch exporter using bits and pieces of code I've cobbled together. src_files is an array that stores a list of max files to export. There a few variables which store whether or not to save a max file, which units to set and save locations of the max files and export flt files. The exporter works really…