> I would like to download all the wordpress templates
> from the following url
> <http://www.eblogtemplates.com/templates/wordpress-th>
> emes/
> So I included the following filters for downloading
>
> -*.png -*.gif -*.jpg -*.css -*.js
> -ad.doubleclick.net/* -mime:application/foobar
> -*[name].http://www.eblogtemplates.com/*
> +*[name].http://www.eblogtemplates.com/*[name]-wordp
> ress*[name]/*
> +*[name].http://www.eblogtemplates.com/download/*[na
> me].zip
> +*.zip
Don't include http: in the filters. Don't include site names unless
necessary.
> -*[name].http://www.eblogtemplates.com/*
There is no site on the internet that starts with .http (leading dot) so none
of your filters work.
Try:
-*
+/*[name]-wordpress*
+/download/*
+*.zip
|