Hello,<br><br>I am trying to get a 2 dim array to map to a directory with a given pattern as follows:<br><br>The directory contains files with names as follows:<br><br>a_00<br>a_01<br>.<br>.<br>a_99<br>b_00<br>b_01<br>.<br>
.<br>.<br>z_99<br><br><br>The mapped variable amap[i][j] should be mapped in such a way that i should map to the prefix and j should map to the suffix part of the file.<br><br>For example: amap[2][10] should return the file c_10.<br>
<br>In addition the said directory is an output directory and does not exist yet.<br><br>A one dimensional array mapping exists for this which is as follows:<br><br>file  dat_files[] < simple_mapper;<br>                              padding = 3,<br>
                              location = "output",<br>                              prefix  = @strcat( str_root, "_" ),<br>                              suffix  = ".dat" >;<br><br>I looked into external mappers but could not figure out how exactly to go for it.<br>
<br>Any clues?<br><br><br><br>Regards,<br>Ketan<br><br>