Friends,
Windows uses virtual sorting of its subdirectories so they can be displayed by name, by date, etc.
But since files may not be physically sorted in the hard disk, when one copies style files to the floppy they are copied in whatever way they are physically stored.
I searched the net many times, with no results, for a utitlity that would put the files in the floppy by alphabet, to no avail. I also sought help in some windows forums with no proper advise.
However, DOS commands can be piped. And just today I found that, in a DOS window, if one is at the subdirectory of interest, one can copy the styles from there to a floppy with the files resulting at the floppy in and alphabetized order as follows:
-----------------------
COPY *.STY A: |SORT
-----------------------
Of course 'STY' may be any other file type and you can apply all of the usual parameters that apply to the copy command.
SORT is not a parameter. It is actually another DOS command that is used to sort the contents of a file, hence this use of piping it with the COPY command is a little obscure.
Thought this might be useful to some of you. If others have a different solution, would you share it?
Thanks.