in reply to Re^2: How can you check to see if a file handle is already open?
in thread How can you check to see if a file handle is already open?

moritz's approach is the same I had in mind, but there's something else that you should care about: if the dataset contains dates for different months and years, you could run out of resources quite easily (i.e. too many open files).

In these cases, FileCache is your friend ;-)

  • Comment on Re^3: How can you check to see if a file handle is already open?