Extreme Picture Finder online documentation
Introduction
Quick Start Guide
Program Interface
Main program window
Main menu commands
New Project wizard
Project properties window
Starting addresses
Target files
Title and category
Regular site
TGP site or page
Destination folder
Naming
Conflicts
Excluded URLs
Included URLs
File size limits
File date limits
Image size limits
Stop conditions
After completion
Create category window
Select category window
New Search wizard
Search properties
Search phrase
Search mode
Search Engines
Destination folder
File size limits
File date limits
Image size limits
Download log viewer
Options
General options
Proxy settings
Connections
Picture viewer settings
Thumbnails settings
Database Explorer settings
Advanced options
Online Project Database Explorer
Report non-working Project window
Request a new category
Contribute Project window
Select local category window
File list columns setup window
URL Generator
Built-in picture viewer
Registration
How to register
Extreme Internet Software
Technical support

Target File types

A valid Target File type consists of literal characters, sets, and wildcards.

Each literal character must match a single character in the string. The comparison to literal characters is case-insensitive.

Each set begins with an opening bracket ([) and ends with a closing bracket (]). Between the brackets are the elements of the set. Each element is a literal character or a range. Ranges are specified by an initial value, a dash (-), and a final value. Do not use spaces or commas to separate the elements of the set. A set must match a single character in the string. The character matches the set if it is the same as one of the literal characters in the set, or if it is in one of the ranges in the set. A character is in a range if it matches the initial value, the final value, or falls between the two values. All comparisons are case-insensitive. If the first character after the opening bracket of a set is an exclamation point (!), then the set matches any character that is not in the set.

Wildcards are asterisks (*) or question marks (?). An asterisk matches any number of characters. A question mark matches a single arbitrary character.

Examples

*.jpg Any file with .jpg extension: image001.jpg, MyPic.JPG
pic??.gif GIF files that start with pic, include two more characters or digits and has a .gif extension: pic01.gif, picaa.gif, picA0.gif
archive[0-9].zip ZIP archive files that start with archive, and include one digit before the .zip extension: archive3.zip, archive9.zip
abc* Any file that starts with abc: abc.gif, abcdef.zip, abc001.jpg
image???.* A file with any extension that starts with image and has three more characters before the extension: image001.gif, imageabc.zip, imageKMH.pcx