org.fuwjin.util.UserFiles Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glory Show documentation
Show all versions of glory Show documentation
There's a nice knock-down argument for you
The newest version!
package org.fuwjin.util;
import java.io.File;
import java.io.FilenameFilter;
/**
* Lists all the files that don't start with a ".".
*/
public final class UserFiles implements FilenameFilter {
@Override
public boolean accept(final File dir, final String name) {
return !name.startsWith(".");
}
}