throw new RuntimeException("Not implemented");
}
public Collection findFiles(IStorage f1, String pathStr, boolean ignoreCase) {
IOFileFilter filter;
IPath path = new Path(pathStr);
if (path.segment(0).equals("*")) {
IOCase ioCase = ignoreCase ? IOCase.INSENSITIVE : IOCase.SENSITIVE;
filter = new NameFileFilter(path.lastSegment(), ioCase);
} else {
String lastSegment = path.lastSegment();
if (lastSegment.startsWith("*")) {