Is it possible to have different coarrays work on different working directories?
For example I have a variable WorkingDIR[*] that holds a different windows location on each image (say "c:\Image1\" and "c:\Image2\" and so forth). How do I set each coarrray to operate in their own specific working directory? The following SYSTEM command does not seem to work
IERR=SYSTEM('cd '//TRIM(WorkingDIR))
I am assuming because it opens a new cmd window and then imediately closes it while keeping the main program running in the original location.