ŒFNAMES Return names of currently-tied files


The niladic function ŒFNAMES returns a character matrix of the names of the component files currently tied by this APL task, in the same order as the tie numbers returned by ŒFNUMS. Names are padded to the right with blanks as necessary. The names are returned in the same form in which they were tied.

For example, under Linux you might have:

      'RUN3' ŒFTIE 2
      '1 RUN4' ŒFTIE 0
3
      '/home/jim/RUN5.aqf' ŒFTIE 8
      ŒFNUMS
2 3 8
      ŒFNAMES
RUN3
1 RUN4
/home/jim/RUN5.aqf

Topic: APLX Help : Help on APL language : System Functions & Variables : ŒFNAMES Return names of currently-tied files
[ Previous | Next | Contents | Index ]