/* Zone 3: dll and exe file types */
FileSelect
FileName("*.dll")
|| FileName("*.exe")
|| FileName("*.inf")
will this sort the *.dll files or just *.ex and *.inf ?
It will sort the files after their full paths, regardless of their extension.
in zone 6 or as a new zone 7, i want to specify file extensions which should be send to end of disk like *.part and *.tmp....
Insert a new Zone between 6 and 7:
FileSelect
FileName("*.part")
|| FileName("*.tmp")
|| ...
FileActions
MoveToEndOfDisk()
FileEnd
I wouldn't move some of these files to the end of the disk:
.cfg A configuration file, usually accessed when a program starts.
.lng Probably a language file, usually accessed when a program starts.
.ico Icons for shortcuts or the program executable itself, or even used within the program
.dat May contain information that a programs needs
.class Contains Java code
.png This image format can used by programs, too
And btw., moving all these files to the end does not speed up your disk. It will even slow it down if one of these files are accessed, because of the long way the read/write heads have to travel. And do not underestimate the NTFS driver. It will probably write new files in the middle of the disk.
its really work. The HD is now faster then before. I just need zone 7 for move specified filetypes to end of the disk ( *.part, *.temp, *.jar... )
Interesting. Which script did you ran before the customized, if any?