1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
|
# Filename Matching
Filename matching is a pattern-matching feature implemented in certain Ruby methods:
- File.fnmatch.
- Pathname#fnmatch.
Each `fnmatch` method matches a pattern against a string _path_;
these methods operate only on strings, and do not access the file system.
These methods are quite different
from [filename-globbing](rdoc-ref:filename_globbing.md) methods,
which match patterns against string paths found in the actual file system.
## Patterns
These are the basic elements of filename matching patterns;
see the sections below for details:
| Pattern | Meaning | Examples |
|:------------------------:|--------------------------------------------|------------------------------|
| Simple string. | Matches itself. | `'Rakefile'`, `'LEGAL'` |
| `'*'` | Matches any sequence of characters. | `'*.txt'` |
| `'?'` | Matches any single character. | `'?.txt'` |
| `'[abc]'`,<br>`'[^abc]'` | Matches a single character from a set. | `'x[abc]y'`,<br>`'x[^abc]y'` |
| `'[a-z]`',<br>`'[^a-z]'` | Matches a single character from a range. | `'x[0-9]y'`,<br>`'x[^0-9]y'` |
| `'\'` | Escapes the next character. | `'\\*'`, `'\?'` |
There are two other patterns that are disabled by default:
- Directory-like substring (`'**'`);
see [`File::FNM_PATHNAME`](#constant-filefnmpathname) below.
- Alternatives (`'{ , }'`);
see [`File::FNM_EXTGLOB`](#constant-filefnmextglob) below.
### Simple \String
A "simple string" is one that does not contain special filename-matching patterns;
see the table above.
A simple string matches itself:
```ruby
File.fnmatch('xyzzy', 'xyzzy') # => true
File.fnmatch('one_two_three', 'one_two_three') # => true
File.fnmatch('123', '123') # => true
File.fnmatch('Form 27B/6', 'Form 27B/6') # => true
Pathname('xyzzy').fnmatch('xyzzy') # => true
Pathname('one_two_three').fnmatch('one_two_three') # => true
Pathname('123').fnmatch('123') # => true
Pathname('Form 27B/6').fnmatch('Form 27B/6') # => true
# Must be exact.
pattern = 'abcde'
path = 'abc'
File.fnmatch(pattern, path) # => false
Pathname(path).fnmatch(pattern) # => false
```
By default, the matching is case-sensitive:
```ruby
pattern = 'abc'
path = 'ABC'
File.fnmatch(pattern, path) # => false
Pathname(path).fnmatch(pattern) # => false
```
Case-sensitivity may be modified by flags:
- [`File::FNM_CASEFOLD`](#constant-filefnmcasefold).
- [`File::FNM_SYSCASE`](#constant-filefnmsyscase).
By default, the alternatives pattern is disabled:
```ruby
pattern = 'R{ub,foo}y'
path = 'Ruby'
File.fnmatch(pattern, path) # => false
Pathname(path).fnmatch(pattern) # => false
```
It may be enabled by flag [`File::FNM_EXTGLOB`](#constant-filefnmextglob).
By default, the Windows short name pattern is disabled:
```ruby
pattern ='PROGRAM~1'
path = 'Program Files'
File.fnmatch(pattern, path) # => false
Pathname(path).fnmatch(pattern) # => false
```
It may be enabled by flag [`File::FNM_SHORTNAME`](#constant-filefnmshortname).
### Any Sequence of Characters (`'*'`)
The asterisk pattern (`'*'`) matches any sequence of characters:
```ruby
pattern = '*'
File.fnmatch(pattern, 'foo') # => true
File.fnmatch(pattern, '') # => true
File.fnmatch(pattern, 'foo') # => true
Pathname('foo').fnmatch(pattern) # => true
Pathname('').fnmatch(pattern) # => true
Pathname('*').fnmatch(pattern) # => true
```
The pattern may be escaped:
```ruby
pattern = '\*'
File.fnmatch(pattern, 'foo') # => false
Pathname('foo').fnmatch(pattern) # => false
```
By default, the asterisk pattern does not match a leading period (as in a dot-file):
```ruby
pattern = '*'
path = '.document'
File.fnmatch(pattern, path) # => false
Pathname(path).fnmatch(pattern) # => false
```
That matching may be enabled by flag [`File::FNM_DOTMATCH`](#constant-filefnmdotmatch).
By default, the asterisk pattern matches across file separators:
```ruby
pattern = '*.rb'
path = 'lib/test.rb'
File.fnmatch(pattern, path) # => true
Pathname(path).fnmatch(pattern) # => true
```
That matching may be disabled by flag [`File::FNM_PATHNAME`](#constant-filefnmpathname).
### Single Character (`'?'`)
The question-mark pattern (`'?'`) matches any single character:
```ruby
pattern = '?'
File.fnmatch(pattern, 'f') # => true
File.fnmatch(pattern, '') # => false
File.fnmatch(pattern, 'foo') # => false
Pathname('f').fnmatch(pattern) # => true
Pathname('').fnmatch(pattern) # => false
Pathname('foo').fnmatch(pattern) # => false
pattern = 'foo-?.txt'
path = 'foo-1.txt'
File.fnmatch(pattern, path) # => true
Pathname(path).fnmatch(pattern) # => true
```
The pattern may be escaped:
```ruby
pattern = '\?'
path = 'f'
File.fnmatch(pattern, path) # => false
Pathname(path).fnmatch(pattern) # => false
```
By default, pattern `'?'` matches the file separator:
```ruby
pattern = 'foo?bar'
path = 'foo/bar'
File.fnmatch(pattern, path) # => true
Pathname(path).fnmatch(pattern) # => true
```
That matching may be disabled by flag [`File::FNM_PATHNAME`](#constant-filefnmpathname).
### Single Character from a Set (`'[abc]'`, `'[^abc]'`)
Characters enclosed in square brackets define a set of characters,
any of which matches a single character:
```ruby
pattern = '[ruby]'
File.fnmatch(pattern, 'r') # => true
File.fnmatch(pattern, 'u') # => true
File.fnmatch(pattern, 'y') # => true
Pathname('r').fnmatch(pattern) # => true
Pathname('u').fnmatch(pattern) # => true
Pathname('y').fnmatch(pattern) # => true
# Matches a single character.
pattern = '[ruby]'
path = 'ruby'
File.fnmatch(pattern, path) # => false
Pathname(path).fnmatch(pattern) # => false
```
The pattern may be escaped:
```ruby
pattern = '\[ruby]'
path = 'r'
File.fnmatch(pattern, path) # => false
Pathname(path).fnmatch(pattern) # => false
```
The character set may be negated:
```ruby
pattern = '[^ruby]'
File.fnmatch(pattern, 'r') # => false
File.fnmatch(pattern, 'u') # => false
Pathname('r').fnmatch(pattern) # => false
Pathname('u').fnmatch(pattern) # => false
```
### Single Character from a \Range (`'[a-c]'`, `'[^a-c]'`)
A range of characters enclosed in square brackets defines a set of characters,
any of which matches a single character:
```ruby
pattern = '[a-c]'
File.fnmatch(pattern, 'b') # => true
File.fnmatch(pattern, 'd') # => false
File.fnmatch(pattern, 'abc') # => false
Pathname('b').fnmatch(pattern) # => true
Pathname('d').fnmatch(pattern) # => false
Pathname('abc').fnmatch(pattern) # => false
```
The pattern may be escaped:
```ruby
pattern = '\[a-c]'
path = 'b'
File.fnmatch(pattern, path) # => false
Pathname(path).fnmatch(pattern) # => false
```
Multiple ranges are allowed:
```ruby
pattern = 'R[t-v][a-c]y'
path = 'Ruby'
File.fnmatch(pattern, path) # => true
Pathname(path).fnmatch(pattern) # => true
```
The range may be negated:
```ruby
pattern = '[^a-c]'
path = 'b'
File.fnmatch(pattern, path) # => false
Pathname(path).fnmatch(pattern) # => false
```
### Escape (`'\'`)
The backslash character (`'\'`) may be used to escape any of the characters
that filename matching treats as special:
```ruby
path = 'b'
File.fnmatch('[a-c]', path) # => true
File.fnmatch('\[a-c]', path) # => false
File.fnmatch('[a-c\]', path) # => false
File.fnmatch('[a\-c]', path) # => false
Pathname(path).fnmatch('[a-c]') # => true
Pathname(path).fnmatch('\[a-c]') # => false
Pathname(path).fnmatch('[a-c\]') # => false
Pathname(path).fnmatch('[a\-c]') # => false
File.fnmatch('{a,b}', path, File::FNM_EXTGLOB) # => true
File.fnmatch('\{a,b}', path, File::FNM_EXTGLOB) # => false
File.fnmatch('{a\,b}', path, File::FNM_EXTGLOB) # => false
File.fnmatch('{a,b\}', path, File::FNM_EXTGLOB) # => false
Pathname(path).fnmatch('{a,b}', File::FNM_EXTGLOB) # => true
Pathname(path).fnmatch('\{a,b}', File::FNM_EXTGLOB) # => false
Pathname(path).fnmatch('{a,b\}', File::FNM_EXTGLOB) # => false
Pathname(path).fnmatch('{a\,b}', File::FNM_EXTGLOB) # => false
```
Use a double-backslash to represent an ordinary backslash:
```ruby
pattern = '\\\\'
path = '\\'
File.fnmatch(pattern, path) # => true
Pathname(path).fnmatch(pattern) # => true
```
By default escape pattern `'\'` is enabled;
it may be disabled by flag [`File::FNM_NOESCAPE`](#constant-filefnmnoescape).
## Flags
Optional argument `flags` (defaults to `0`) may be the bitwise OR
of the constants `File::FNM*`.
These are the constants for filename-matching patterns;
see the sections below for details:
| Constant | Meaning |
|-----------------------------------------------------|-------------------------------------------------------------|
| [`File::FNM_CASEFOLD`](#constant-filefnmcasefold) | Make the pattern case-insensitive. |
| [`File::FNM_DOTMATCH`](#constant-filefnmdotmatch) | Make pattern `*` match a leading period.. |
| [`File::FNM_EXTGLOB`](#constant-filefnmextglob) | Enable alternatives in pattern. |
| [`File::FNM_NOESCAPE`](#constant-filefnmnoescape) | Disable escaping. |
| [`File::FNM_PATHNAME`](#constant-filefnmpathname) | Make patterns `'*'` and `'?'` not match the file separator. |
| [`File::FNM_SHORTNAME`](#constant-filefnmshortname) | Enable short-name matching (Windows only). |
| [`File::FNM_SYSCASE`](#constant-filefnmsyscase) | Make the pattern use OS's case sensitivity. |
### Constant File::FNM_CASEFOLD
By default, filename matching is case-sensitive;
use constant [`File::FNM_CASEFOLD`](#constant-filefnmcasefold)
to make the matching case-insensitive:
```ruby
File.fnmatch('abc', 'ABC') # => false
File.fnmatch('abc', 'ABC', File::FNM_CASEFOLD) # => true
```
### Constant File::FNM_DOTMATCH
By default, filename matching does not allow pattern `'*'` to match a dotfile name
(i.e, a filename beginning with a dot);
use constant [`File::FNM_DOTMATCH`](#constant-filefnmdotmatch)
to enable the match:
```ruby
File.fnmatch('*', '.document') # => false
File.fnmatch('*', '.document', File::FNM_DOTMATCH) # => true
```
### Constant File::FNM_EXTGLOB
By default, filename matching has the alternative notation disabled;
use constant [`File::FNM_EXTGLOB`](#constant-filefnmextglob)
to enable it:
```ruby
File.fnmatch('R{ub,foo}y', 'Ruby') # => false
File.fnmatch('R{ub,foo}y', 'Ruby', File::FNM_EXTGLOB) # => true
```
The alternatives pattern consists of zero or more unquoted strings,
separated by commas, and enclosed in curly braces:
```ruby
File.fnmatch('R{ub,foo,bar}y', 'Ruby') # => false # Not enabled.
File.fnmatch('R{ub,foo,bar}y', 'Ruby', File::FNM_EXTGLOB) # => true
# Whitespace matters.
File.fnmatch('R{ub ,foo,bar}y', 'Ruby', File::FNM_EXTGLOB) # => false
File.fnmatch('R{ ub,foo,bar}y', 'Ruby', File::FNM_EXTGLOB) # => false
# Special characters remain in force:
File.fnmatch('{*,?}', 'hello', File::FNM_EXTGLOB) # => true
File.fnmatch('{*ello,?}', 'hello', File::FNM_EXTGLOB) # => true
File.fnmatch('{*ELLO,?}', 'hello', File::FNM_EXTGLOB) # => false
File.fnmatch('{*ELLO,?????}', 'hello', File::FNM_EXTGLOB) # => true
# With the flag not given.
File.fnmatch('R{ub,foo,bar}y', 'Ruby') # => false
```
### Constant File::FNM_NOESCAPE
By default filename matching has escaping enabled;
use constant [`File::FNM_NOESCAPE`](#constant-filefnmnoescape)
to disable it:
```ruby
File.fnmatch('\*\?\*\*', '*?**') # => true
File.fnmatch('\*\?\*\*', '*?**', File::FNM_NOESCAPE) # => false
```
### Constant File::FNM_PATHNAME
Flag [`File::FNM_PATHNAME`](#constant-filefnmpathname) affects
patterns `'**'`, `'*'`, and `'?'`.
By default, the double-asterisk pattern (`'**'`) is equivalent to pattern `'*'`,
and matches any sequence of directory-like substrings:
```ruby
File.fnmatch('**', 'a/b/c') # => true
File.fnmatch('*', 'a/b/c') # => true
```
When flag [`File::FNM_PATHNAME`](#constant-filefnmpathname) is given,
the pattern matches only one component of a file path:
```ruby
File.fnmatch('**', 'a/b/c') # => true # Matches 'a/b/c'.
File.fnmatch('**', 'a/b/c', File::FNM_PATHNAME) # => false # Matches only 'a'.
File.fnmatch('**', 'a/b/c', File::FNM_PATHNAME) # => false # Matches only 'a/b'.
File.fnmatch('**/*', 'a/b/c', File::FNM_PATHNAME) # => true # Matches 'a/b', then 'c'.
```
By default, filename matching enables pattern `'*'` to match
at or across the file separator (`File::SEPARATOR`);
use constant [`File::FNM_PATHNAME`](#constant-filefnmpathname)
to disable such matching:
```ruby
File::SEPARATOR # => "/"
File.fnmatch('*.rb', 'lib/test.rb') # => true
File.fnmatch('*.rb', 'lib/test.rb', File::FNM_PATHNAME) # => false
```
By default, filename matching enables pattern `'?'` to match
at or across the file separator (`File::SEPARATOR`);
use constant [`File::FNM_PATHNAME`](#constant-filefnmpathname)
to disable such matching:
```ruby
File.fnmatch('foo?boo', 'foo/boo') # => true
File.fnmatch('foo?boo', 'foo/boo', File::FNM_PATHNAME) # => false
```
### Constant File::FNM_SHORTNAME
By default, Windows shortname matching is disabled;
use constant [`File::FNM_SHORTNAME`](#constant-filefnmshortname)
to enable it (on Windows only).
Using that constant allows patterns to match short names
in filename matching on Windows,
which can be useful for compatibility with legacy applications
that rely on these short names;
see [8.3 filename](https://en.wikipedia.org/wiki/8.3_filename).
This feature helps ensure that file operations work correctly
even when dealing with files that have long names.
```ruby
File::FNM_SHORTNAME.zero? # => false # On Windows, not zero; may be enabled.
File::FNM_SHORTNAME.zero? # => true # Elsewhere, always zero; may not be enabled.
File.fnmatch('PROGRAM~1', 'Program Files') # => false
# This will be true if and only if on Windows and short name 'PROGRAM~1' exists.
File.fnmatch('PROGRAM~1', 'Program Files', File::FNM_SHORTNAME) # => true
```
### Constant File::FNM_SYSCASE
By default, filename matching uses Ruby's own case-sensitivity rules;
use constant [`File::FNM_SYSCASE`](#constant-filefnmsyscase)
to use the case-sensitivity rules of the underlying file system:
```ruby
File::FNM_SYSCASE.zero? # => false # On Windows, not zero; may be enabled.
File::FNM_SYSCASE.zero? # => true # Elsewhere, always zero; may not be enabled.
File.fnmatch('abc', 'ABC') # => false # Ruby; case-sensitive.
File.fnmatch('abc', 'ABC', File::FNM_SYSCASE) # => true # Windows; case-insensitive.
File.fnmatch('abc', 'ABC', File::FNM_SYSCASE) # => false # Linus; case-sensitive.
```
|