| Package | Description |
|---|---|
| org.apache.commons.io | |
| org.apache.commons.io.filefilter |
| Modifier and Type | Field | Description |
|---|---|---|
static IOCase |
IOCase.INSENSITIVE |
The constant for case insensitive regardless of operating system.
|
static IOCase |
IOCase.SENSITIVE |
The constant for case sensitive regardless of operating system.
|
static IOCase |
IOCase.SYSTEM |
The constant for case sensitivity determined by the current operating system.
|
| Modifier and Type | Method | Description |
|---|---|---|
static IOCase |
IOCase.forName(String name) |
Factory method to create an IOCase from a name.
|
| Modifier and Type | Method | Description |
|---|---|---|
static boolean |
FilenameUtils.equals(String filename1,
String filename2,
boolean normalized,
IOCase caseSensitivity) |
Checks whether two filenames are equal, optionally normalizing and providing
control over the case-sensitivity.
|
static boolean |
FilenameUtils.wildcardMatch(String filename,
String wildcardMatcher,
IOCase caseSensitivity) |
Checks a filename to see if it matches the specified wildcard matcher
allowing control over case-sensitivity.
|
| Modifier and Type | Method | Description |
|---|---|---|
static IOFileFilter |
FileFilterUtils.nameFileFilter(String name,
IOCase caseSensitivity) |
Returns a filter that returns true if the filename matches the specified text.
|
| Constructor | Description |
|---|---|
NameFileFilter(String[] names,
IOCase caseSensitivity) |
Constructs a new name file filter for an array of names specifying case-sensitivity.
|
NameFileFilter(String name,
IOCase caseSensitivity) |
Construct a new name file filter specifying case-sensitivity.
|
NameFileFilter(List<String> names,
IOCase caseSensitivity) |
Constructs a new name file filter for a list of names specifying case-sensitivity.
|
Copyright © 2026 GeneXus S.A.. All rights reserved.