Name=Save:
The name=SAVE: parameter allows the user to save files to any location by opening a separate window. The following program provides an example:
00010 OPEN #1: "name=SAVE:.,recl=1,new",EXTERNAL,OUTPUT IOERR PROBLEM
00020 PRINT FILE$(1);" ";LREC(1)
00030 CLOSE #1: 
00040 STOP 
00100 PROBLEM: ! There was a problem opening the file.
00110 IF ERR=4150 THEN !:
      PRINT "Could not create file:";FILE$(1) !:
      STOP  ! FILE$(1) is blank!
00120 PRINT "Err:";ERR;" Line:";LINE !:
      STOP 
To determine the name of the file selected: