summaryrefslogblamecommitdiffstats
path: root/conversion/FileSieve.java
blob: e0a51664302daacd5df980876162ed2cd7247803 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                                                            
package scruf.conversion;

import java.io.*;
import java.util.regex.*;

public class FileSieve implements FileFilter {
    // this method return true, if this file doesn't represent
    // a html file.
    public boolean accept(File pathname) {
	Pattern pattern = Pattern.compile("(.+\\.(html|png|jpg|css|tar))|(.+?\\~)|(index)");
	Matcher matcher = pattern.matcher(pathname.getName());
	boolean bool = matcher.find();
	return !bool;
    }    
}