2.11 Is there an easy way to list files in a group in date order, sorted by date modified, accessed or created?

With considerable effort, you can create a CI command file that parses the output from "LISTFILE ,3" etc. But there is a simpler way, use the Posix shell and the command 'ls' (or LS.HPBIN.SYS if you're working from the colon prompt).

From the Posix shell prompt type: 'ls -mt', 'ls -ut', 'ls -ct' for modified, accessed, created. You need to specify that 't' flag to get the order you want. So ls -mt gives you "ordered by modification date." Add the -r flag and it will reverse the ordering. Add the -l flag and it will give you details. Type 'man ls' from the shell for full details on the ls command.