-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathLIST.DOC
4492 lines (2214 loc) · 117 KB
/
LIST.DOC
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
LIST
A File Viewing and Browsing Utility
Version 9.1
(c) Copyright Vernon D. Buerg 1983-95. All rights reserved
LIST is a copyrighted program. LIST is NOT public domain. LIST may be copied
for personal use only subject to the restrictions set forth in the last chapter.
T A B L E O F C O N T E N T S
__________________________________________________________________________
Getting Started ...................................................... 2
Introduction ..................................................... 2
Installation ..................................................... 2
MS Windows ....................................................... 2
Printing the manual .............................................. 4
Varieties of LIST.COM ............................................ 5
Definition of DOS terms .............................................. 7
DOS Redirection .................................................. 7
DOS Filters ...................................................... 7
DOS Pipes ........................................................ 9
Command line ......................................................... 10
Command line syntax .............................................. 10
Command line switches ............................................ 10
How to use LIST ...................................................... 13
Starting LIST .................................................... 13
Exiting LIST ..................................................... 14
Entering Commands ................................................ 14
Display Format ................................................... 15
Status Line Format ............................................. 15
Command Line Format ............................................ 18
Scrolling ........................................................ 20
Positioning to Lines ............................................. 21
Filtering ........................................................ 23
Wrap Filter .................................................... 24
Hi-bit Filter .................................................. 24
Star Filter .................................................... 24
Junk Filter .................................................... 24
Hex Format Filter .............................................. 25
Tab expansion filter ........................................... 25
Scanning for text ................................................ 26
Marking and Extracting Lines ..................................... 29
Printing ......................................................... 31
Displaying multiple files ........................................ 32
Split Screen Display ............................................. 34
Telephone dialer ................................................. 35
DOS considerations ................................................... 36
File Sharing ..................................................... 36
Invoking DOS Commands ............................................ 36
Screen Saving .................................................... 36
File Selection Menu .................................................. 38
LIST PLUS Display ................................................ 38
Movement Keys .................................................... 39
Changing Directories ............................................. 40
Contents 1 LIST User's Guide
T A B L E O F C O N T E N T S
__________________________________________________________________________
List file ........................................................ 40
Copy file ........................................................ 40
Delete file ...................................................... 40
Edit file ........................................................ 40
Invoke file ...................................................... 42
Move file ........................................................ 42
Path changing .................................................... 42
Rename ........................................................... 42
Sort filenames ................................................... 42
Attribute display/change ......................................... 44
1-9 up display ................................................... 44
ViewArc .......................................................... 45
Command key summary .................................................. 46
Cursor keys ...................................................... 46
F- function keys ................................................. 46
Letter keys ...................................................... 48
Control- keys .................................................... 50
Alt- keys ........................................................ 52
Configuring LIST ..................................................... 54
Screen Colors .................................................... 54
Cloning .......................................................... 55
Modifying LIST.COM ................................................... 57
Locations of option values ...................................... 57
LIST Plus offsets ............................................... 58
Reassigning keys ................................................ 60
Table of Routines ............................................... 61
ARCE - Extract ARC File Utility ...................................... 64
ARCE Version 4.0g ................................................ 64
Description ..................................................... 64
Format .......................................................... 64
Parameters ...................................................... 64
ARCE Examples .................................................... 66
ARCE Messages .................................................... 67
FV - Verbose Archive Directory Lister ................................ 71
FV - Version 1.45 ................................................ 71
Description ..................................................... 71
Format .......................................................... 71
Parameters ...................................................... 71
FV Examples ...................................................... 73
Restrictions ......................................................... 74
Registration ......................................................... 75
Copyright/License/Warranty ........................................... 76
LIST User's Guide Contents 2
--------- LIST is a user supported program. It is not public domain. ---------
Copyright/License/Warranty
______________________________________________________________________________
You may use LIST and give it to your friends, but you may
not sell it or use it in business without obtaining a
license. See the last page for information about licensing.
LIST User's Guide Page 1
Getting Started
______________________________________________________________________________
Introduction
You use LIST to display files on your monitor, line by line with the
aid of scrolling, positioning and filtering commands.
LIST PLUS has many new commands which go beyond usual file viewing
and browsing. We will explain how LIST is used, and then how the
new file management commands are used.
Before going into all of the ways in which LIST can be used to
display files, let's look at the three different varieties of LIST
so that you understand the capabilities of each. Then, we'll go on
and define certain terms like: redirection, piping, and filtering.
In this way, you will better understand how you can use these things
with LIST.
Installation
There are three varieties of the LIST program on the disk that you
received (or in the file that you downloaded). This allows you to
pick the version of LIST that is right for you, and to configure it
to be exactly the way YOU want it to be.
Decide which of the LIST programs you would like to use and copy the
.COM file to your working disk, or into a subdirectory on your hard
disk. Selecting a directory that is in your PATH will allow you to
use LIST from anywhere on your system.
You may rename the program file to any convenient name, such as
L.COM, READ.COM, LST.COM or leave it as LIST.COM. For example,
place the distribution disk into drive A and enter the commands:
A:
COPY LIST.COM C:\L.COM
to copy the Plus version to the root directory of your C drive,
renaming the program to L.COM in the process.
MS Windows
LIST can be used as a DOS application under MS Windows as a full
screen or windowed task. To make LIST available to MS Windows:
1. - Copy LIST.COM, LIST.ICO and LIST.PIF to your WINDOWS directory
Page 2 LIST User's Guide
Getting Started
______________________________________________________________________________
Introduction
2. - Within MS Windows Program Manager,
- select File (alt-F),
- select New and choose new program (default)
- type in LISTwin as the description
- type in LIST.PIF as the program name
- click on Change Icon
- select browse and pick LIST.ICO
- select OK
LIST User's Guide Page 3
Getting Started
______________________________________________________________________________
Introduction
Printing the manual
To print the documentation, set your printer for six lines per inch,
and 10 characters per inch. Then, use the DOS PRINT command. For
example,
PRINT LIST.DOC
You may also print out the documentation by using redirection and
entering:
TYPE LIST.DOC > LPT1
Better yet, use LIST to print the manual. Enter
LIST LIST.DOC
then press Ctrl-P (the Ctrl and P keys at the same time).
The documentation file is marked with | before new and changed
lines. It is marked with a double asterisk ** for LIST PLUS
only features.
WARNING
LIST PLUS (LIST.COM) HAS THE ABILITY TO *DELETE*
FILES FROM YOUR SYSTEM!!
IF YOU ELECT TO USE LIST PLUS, PLEASE READ THE SECTION ON THE FILE
SELECTION MENU FOUND LATER ON IN THIS MANUAL.
Page 4 LIST User's Guide
Getting Started
______________________________________________________________________________
Varieties of LIST.COM
- LISTS.COM small version
- runs in about 30k
- limited to smaller files (around 600kb),
- excludes the Alt-X (screen saving) function
- excludes the Alt-G (goto DOS) function
- the Help screen is minimal.
- LISTR.COM regular version
- runs in about 80K
- handles files up to 16 mb
- excludes the Alt-V (file selection) function
- excludes the Alt-I (insert filename) function
- the Alt-W (windowing function) is minimal, i.e. you get two
equal sized windows; there is no ability to change window
dimensions
- LIST.COM PLUS version
- plus Alt-V file selection menu
- plus file management functions like copy and delete
- plus Alt-I hypertext-like file selection
- plus a help screen for the file selection Alt-V functions
- plus a second help screen for regular functions
- plus the Ctrl-T telephone dialer
- LISTOS2.EXE OS/2 v1.2 version (for registered users only)
- same as LIST Plus except for the following
- long file names are not supported
- mouse support is different
LIST User's Guide Page 5
Getting Started
______________________________________________________________________________
Varieties of LIST.COM
There is also a commercial version of LIST called LIST Enhanced.
The main differences between LIST Plus and LIST Enhanced are:
- the File Selection menu has:
- file tagging, including tag all, untag, retag, etc.
- archive file extract and add/update commands
- a sweep command to execute a specified program with all of
the tagged files
- a hardcopy (print) command for printing files with a user program
- commands to change screen colors for all displayable items
- shell to DOS
- change video modes
- a directory tree display command
- the rename command that can rename directories
- a command to create new directories
- the viewer part has:
- the alt-E command presents a menu offering up to 6 video modes
including 132x25, 132x43, 80x43, etc., if the video adapter
supports that text mode
- viewing of EBCDIC and ASCII files
- handling of fixed-length record files like database files at two
or more times the usual speed
- optional number (on the left side) of each record
- command line parameters to position to a given record number, or
to the end of file
- handling of files up to 32 mb or 500 mb in size (larger upon request)
- the wrap option splits the line at a word boundary
- in general:
- allocates memory more efficiently: can run in as little as 100k
with all functions
- supports UltraVision video utility
- options to use regular DOS input routines that take advantage of
PCED, DOSKEY, or other keyboard utilities; or, to use an internal
input routine which allows command line editing
- a customization program that can be used to set any of the LIST
options or toggle, and save them to a file, or read the options
saved in a file; the customization program can define other
printer names, can define all the names of archive programs used,
- a 170-page spiral bound manual
- a 6-panel Quick Reference card of all commands
- one year of free updates
- telephone, FAX, and BBS support
LIST Enhanced may be purchased at computer stores or ordered directly
from Buerg Software. Registered users of LIST receive a $20 discount.
Page 6 LIST User's Guide
Definition of DOS terms
______________________________________________________________________________
DOS Redirection
The output of a DOS command can be "redirected" to a device other
than the standard output device, which is in most cases, the
monitor. This is done simply by entering the command, followed by a
">" and then the name of the desired device. For example.
If you type "DIR > FILE.LST" you will see nothing on your screen and
then suddenly your DOS prompt will reappear. What happened? The
"output" of the DIR command was "redirected" to the file, FILE.LST.
In the same manner, you could enter the following command and send
the contents of FILE.LST to your printer, like so: "TYPE FILE.LST >
LPT1"
The ">" symbol stands for redirection of output to another device.
Broken down simply, the following command is saying:
DIR > FILE.LST
(send output of this) (TO) (This device, which is a file)
By the same token, you can also redirect "input" to a DOS command or
a program like SORT by using the "<" symbol. Here is an example:
"SORT < FILE.LST" This command would take the information in
FILE.LST and "redirect" it into SORT. For more information on
redirection, you may want to consult a DOS manual or other such
reference.
DOS Filters
FILTERS are commands, or programs, that read data from an input
device, and then rearranges or "filters" the data before it then
outputs the filtered information to an output device. DOS comes
with several "filters", one of which is SORT. The following command
would sort the file in alphabetical order.
SORT < FILE.LST
You are redirecting the file, FILE.LST through the SORT filter and
it is rearranging the file. Taking what you know about redirection
and filters, you could now send your alphabetical list to yet
another file by entering: SORT < FILE.LST > ALPHA.LST, which
redirects FILE.LST into the SORT "filter" and then redirects the new
output to the file ALPHA.LST. LIST also has some very helpful
"filters" built right into it and we'll discuss these later on.
Simply keep in mind that when you use a "filter" it will rearrange
or alter the information into a form that is more presentable, or
LIST User's Guide Page 7
Definition of DOS terms
______________________________________________________________________________
useful, to you.
Page 8 LIST User's Guide
Definition of DOS terms
______________________________________________________________________________
DOS Pipes
Pipes are quite similar, in some ways, to redirection. They are
"connections" between two programs or two commands or a command and
a program. Pipes take data that is output from one program and
redirect it as input to a second program. The DOS symbol for a pipe
is the vertical bar "|". To redirect the output from one program or
command to another, you simply type the first command followed by a
vertical bar and then followed by the second command. Here is an
example of piping.
DIR | FIND "-88"
This command tells DOS to send the output of the DIR command, which
you would normally see on the screen, and send it through the FIND
filter. FIND would be searching each line for the string "-88".
Only the files in the current directory that have a 1988 date stamp
would be displayed on the screen! You can use more than one "pipe"
in a command. Take this final example:
DIR | FIND "-88" | SORT/+14 > PRN
A "pipe" takes the output of the DIR command and converts it into
input for the FIND filter. Then, a second "pipe" is used to send
the output from FIND as input to the SORT filter. As a last step,
output from SORT is redirected to the printer! What would this
command do?? It would take the DIR of the current directory and
pipe it through the FIND filter, looking for files created in 1988.
Then the next pipe would SORT that information, sorting the files by
SIZE (the 14th column of each line) and then send the output to the
printer. For more information on PIPES, consult a DOS manual or
other reference.
Now that you have a basic understanding of redirection, filtering,
and piping, we will go on to discuss the command line of LIST.
LIST User's Guide Page 9
Command line
______________________________________________________________________________
Command line syntax
The command line format is:
LIST [filespec...filespec] [/switches]
You may supply one or more file specifications (filespecs). LIST
will display each file which has a filename matching one of the
filespecs. If you do not supply one, LIST will prompt you for a
filespec, or present you with a file selection menu.
Command line switches
/? displays LIST usage information
/B tells LIST to use the BIOS for displaying data
instead of using direct screen writes
/D forces display of the File Selection menu for the
specified files, e.g. *.TXT for a menu display of
only files with an extension of TXT
/E tells LIST to begin displaying the files from the
end of each file instead of from the beginning
/K disables the mouse; both /M and /K mouse options
are clonable
/Q toggles sounding of beeps; the same as Alt-Q
/V causes a verify operation to be performed after
any Copy or Move operation; the /V option defaults
to the value of the DOS VERIFY setting
/4 places LIST into 43 (or 50) line display mode;
this requires an EGA or VGA display adapter
/S indicates viewing a piped or redirected file
/J sets Junk filter on
/7 sets 7-bit display
/8 sets 8-bit display
/* sets star filter on
/W sets Wrap on
Page 10 LIST User's Guide
Command line
______________________________________________________________________________
/H sets Hex dump mode
/L sets pre-Loading on
/M allows use of a mouse for moving the cursor
/K disables mouse for cursor positioning
LIST User's Guide Page 11
Command line
______________________________________________________________________________
Command line switches (cont'd)
/Ftext begins a text search through all of the selected files
and is case insensitive
/Ttext searches all files immediately for the 'text' and is
case sensitive; the /Ftext and /Ttext options MUST be
the last options on the command line; both cannot be
used at one time
/#nnnn begins displaying the file at record 'nnnnnn'
The command line switch character is normally a slash, "/", but LIST
will use whatever character that is defined to DOS as the command
line switch character, e.g. a dash, "-". Depending on your needs,
you could load LIST using any of these command line switches, such
as:
LIST MYFILE.TXT /W which would set Word Wrap ON.
LIST MYFILE.TXT /J which turns on the JUNK filter
The L, W, M, S and /J command line switches may be used to disable
the corresponding option by adding a minus symbol to them. For
example, /-W or /W- will set wrap off.
The B, D and Q switches are toggles. That is, specifying them
reverses the default, or cloned, setting.
Page 12 LIST User's Guide
How to use LIST
______________________________________________________________________________
Starting LIST
To start LIST, you type the command LIST, at the DOS prompt,
followed by the name(s) of the files that you want to see. For
example:
C:>LIST CONFIG.SYS (displays file CONFIG.SYS)
C:>LIST *.DOC (displays all DOC files in current directory)
The "filename" is optional. If omitted, LIST PLUS will bring up a
display of ALL files and subdirectories in the current directory.
You may use the cursor keys to highlight the file that you would
like to work on and press ENTER. Or, you may highlight any sub-
directory entry and press ENTER to change to that subdirectory.
You may also use LIST to display piped or redirected files. A
discussion of redirection, piping, and filtering is at the beginning
of this manual.
To display a redirected file, use a < (less than symbol) before the
name of the file that was redirected and add the /S parameter to the
LIST command.
For example, the output of the DIR command can be written to a file
called XYZ, and then LIST can be instructed to read that file.
dir a: >xyz
list <xyz /s
To see a piped file, omit the filename, but supply the /S.
dir a: | list /s
Or, to LIST a file within an ARC archive:
ARC /p arcname.arc filename.ext | list /s
- or -
ARCE arcname filename.ext /p | list /S
Here, the ARC or ARCE program is invoked to extract the
'filename.ext' file. The /P switch for these programs sends the
output to the standard output device, and this output is piped to
LIST. Once the file is displayed on your screen, you may use the
cursor positioning keys to move around and see different parts of
the file. There are also commands to search for text, print, split
the screen, display other files, change colors, change the way
the data is displayed, and many other operations.
LIST User's Guide Page 13
How to use LIST
______________________________________________________________________________
Exiting LIST
There are several ways to exit LIST depending on how you want the
screen to look.
The F10 command returns you to DOS with the DOS prompt on the bottom
line. The last page that was displayed by LIST is left on the
screen.
The ESCape key also returns you to DOS without changing the screen.
In LIST PLUS, the ESCape key is also used to cancel an operation, or
to exit file selection menu.
The X command returns you to DOS and clears the screen. The DOS
prompt is on the top line of the screen.
The Alt-X command uses the screen saving feature. It returns you to
DOS and displays the screen that you had before LIST was run.
Entering Commands
You enter commands by pressing a single key, or a combination of
keys. There are often several ways to perform the same function
with different keys. For example, D and PgDn both perform a scroll
down one page function. This lets you pick the keys that you are
most accustomed to.
When you press keys, they are entered into a keyboard buffer.
Holding down a key can put many copies of that key into the buffer.
This means that when you let up on a key, the program can still be
processing input from the keyboard buffer. For example, by holding
down the PgDn key, LIST scrolls down one page for each time the PgDn
key is placed in the keyboard buffer. When you let up on the key,
the buffer may not yet be empty and LIST will continue to page down.
To make LIST stop when you let up on a key, you use the Alt-K
key-ahead toggle.
Keyboard enhancement utilities, such as PCED, may also change the
way that LIST reads the keyboard. With PCED, for example, pressing
the ESCape key at a prompt is different. You do not see the / that
DOS normally sends when you cancel an input line.
Operation with DOSKEY, 4DOS and NDOS is not special.
Page 14 LIST User's Guide
How to use LIST
______________________________________________________________________________
Display Format
The monitor display is defined in terms of lines and columns. A
typical monitor can display 25 lines of 80 columns each. LIST
attempts to use the number of lines and columns for the monitor mode
in use. For example, if the monitor is in 132 column mode, LIST
displays 132 characters per line. If the monitor is set for other
than 25 lines, such as 35, 43, or 50 lines, LIST displays that many
lines per screen.
If you use the Alt-E command to change EGA/VGA modes, the EGA
palette, cursor, and other settings are set to the DOS default
values. LIST does not preserve fonts or palettes.
The top line of the display is called the Status line. The bottom
line is called the Command line. The remaining lines are called the
primary display window, and are usually lines two through 24.
Status Line Format
The Status line has two formats. The default format is:
ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
³ LIST lllll nnnnnnn +sss mm/dd/yy hh:mm - filename ³
ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
where,
'LIST' is the name of this program
'lllllll' is the line number of the first line in the primary
display window (under the status line)
'nnnnnnn' is the line number of the last record of the file;
if the last record of the file has not been read,
| or if the % (percent) command has been used, this
field shows the percentage of the file that has
been read
'+sss' if displayed, this is the Scroll amount, in multiples
of 10, corresponding to the number of columns that
the display has been shifted to the right to view
records longer than 80
'mm/dd/yy' is the file's creation date (not today's date); or
'dd-mm-yy' is the file's date in European format
'hh:mm' is the file's creation time (not today's time)
LIST User's Guide Page 15
How to use LIST
______________________________________________________________________________
Display Format
'filename' is the name of the file you are currently viewing
Note: The date and time shown on the top line is NOT the current
date. It is the date and time that the file was created.