| > Hi all!
> Httrack is a really cool program, but one thing I
would really like
> to see in it is the capability of a minimum file
length.
> There's already a maximum file length, so why not
make a
> minimum one?
This option is not directly accessible - you can
specify minimum file length using filters ("scan
rules"):
-*.gif*[<5]
wil exclude all gif files smaller than 5KB
-*.gif*[<5] -*.jpg*[<8]
will exclude all gif files smaller than 5KB and all
jpg files smaller than 8KB
-*.gif*[<5] -www.foo.com/*.jpg*[<8] -*.avi[>1000]
will exclude all gif files smaller than 5KB, all jpg
files smaller than 8KB at www.foo.com and all avi
files greater than 1MB
-**[<5]
wil exclude ALL files smaller than 5KB
| |