HFS: File masks: Difference between revisions

From rejetto wiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
== What is it? ==
== Cos'è? ==


A file mask denotes a set of files. It is usually something like this: <tt>*.jpg;*.gif</tt>. This example denotes any jpeg and gif files.  
A file mask denotes a set of files.<br>It is usually something like this: <tt>*.jpg;*.gif</tt>.<br>Questo esempio denota ogni file con estensione jpeg e gif. <br>
Remember that the characters used in filenames are not case sensitive: so <tt>*.jpg</tt> and <tt>*.JPG</tt> refer to exactly the same set of files.
Ricorda che i caratteri usati nei nomi dei files non sono'' "case sensitive"'' '''Bold text''': per cui <tt>*.jpg</tt> and <tt>*.JPG</tt> si riferisce esattamente allo stesso set di files.


== How does it work? ==
== How does it work? ==

Revision as of 22:35, 10 January 2007

Cos'è?

A file mask denotes a set of files.
It is usually something like this: *.jpg;*.gif.
Questo esempio denota ogni file con estensione jpeg e gif.
Ricorda che i caratteri usati nei nomi dei files non sono "case sensitive" Bold text: per cui *.jpg and *.JPG si riferisce esattamente allo stesso set di files.

How does it work?

The example above shows a double file mask. It has two atoms separated by the semicolon: *.jpg and *.gif. The semicolon is used to merge multiple masks: it is a special character. There are only three special characters in file masks: ; * and ?.

The star (*)

The star (also called "asterisk") stands for any string of characters. If the mask contains only the star, it matches ANY file.

If you put an A before the star A*, it matches any file starting with an A.

If you put an A after the star *A, it matches any file ending with an A.

A*B matches any file starting with an A and ending with a B. The example above shows *.jpg : it matches any file ending with .jpg (that is, jpeg images). jpeg files are relatively unusual because they sometimes end with .jpeg and more rarely with .jpe . (The part of a filename that comes after the period is called the file "extension", and is normally limited to three characters.) You could use the mask .jp* to match all types of jpeg files.

The star also matches the null string: A*.jpg matches files like A1.jpg , Adfgg.jpg but also A.jpg.

The question mark (?)

This stands for a single character. Something like A?B matches any filename that is three characters long and starts with an A and ends with a B. The length is fixed to three characters because ? can be replaced by only one character. Thus the ? does not match the null string as the * does.