Learning kdb+q. Without loss of generality, let's say if I have a list of file paths and wants to open each one of them, but I want to make sure Q opens whatever it exists. Say if one of the file paths doesn't exist, then continue to process others.
I know protected evaluation can let me handle error @[open_many_files_func; files; errhandler]
.
But how to make it not fail in the middle and continue with the rest?