Java Code Examples for org.apache.commons.io.filefilter.HiddenFileFilter#VISIBLE
The following examples show how to use
org.apache.commons.io.filefilter.HiddenFileFilter#VISIBLE .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: LicenseHeaderUpdate.java From kfs with GNU Affero General Public License v3.0 | 4 votes |
public LicensableFileDirectoryWalker( IOFileFilter fileFilter, String firstLine, String linePrefix, String lastLine ) { super(HiddenFileFilter.VISIBLE,fileFilter,100); this.firstLine = firstLine; this.linePrefix = linePrefix; this.lastLine = lastLine; }
Example 2
Source File: FileNodeUtil.java From youran with Apache License 2.0 | 2 votes |
/** * 获取文件过滤器 * * @return */ public static FileFilter getFileFilter() { return HiddenFileFilter.VISIBLE; }