File Masks |
A file mask is a pattern of characters and wildcards used to match folder and file names. Example: *.* would match any filename. For historical reasons, it even matches files that don't have an extension. Example: *.html would match any HTML filename. Wildcards Wildcards allow a file mask to match multiple folder or file names.
Example: A? would match A followed by any single character. Example: A* would match A followed by any amount of characters. Example: [a-z0-9] would match any number or letter. Example: [!ac-g] would match any character except for a, c, d, e, f, and g. Simple file masks Simple file masks will affect any files or folders whose parent folder is included. The base folder is always included. All folders which contain included files are also included. To exclude rather than include the specified items, add a minus sign (-) in front of a file mask in the Filters edit. In the File Filters dialog, place the file mask in the Exclude edit rather than using the minus sign. If the last character in the file mask is a period (.) then ? and * wildcards do not match periods to allow filtering of files that don't have an extension.
Example: *.pas;*.dfm;*.dpr would include only files with extensions pas, dfm, or dpr. Example: Source\ would include only folders named Source and their subfolders. Example: -*.dcu;-*.ddp would exclude files with extensions dcu, or ddp. Example: -Backup\ would exclude folders named Backup. Example: *. would include only files without an extension. Relative file masks Relative file masks affect files or folders in specific locations.
Example: Windows\*.txt would affect any text file in any included folder named Windows. Example: ...\Windows\*.txt would affect any text file in any folder named Windows. Example: .\Windows\*.txt would affect any text file in a folder named Windows that is in the base folder. |