Skip to content
Snippets Groups Projects
Commit 51dc6025 authored by brinn's avatar brinn
Browse files

Add a file filter ACCEPT_ALL_BUT_HIDDEN_FILTER.

SVN: 25921
parent ad196401
No related branches found
No related tags found
No related merge requests found
...@@ -103,6 +103,18 @@ public final class FileUtilities ...@@ -103,6 +103,18 @@ public final class FileUtilities
} }
}; };
/**
* A file filter that accepts all entries but the hidden ones.
*/
public static final FileFilter ACCEPT_ALL_BUT_HIDDEN_FILTER = new FileFilter()
{
@Override
public boolean accept(File pathname)
{
return pathname.isHidden() == false;
}
};
/** /**
* Copies the content of the specified source file to the specified destination file. * Copies the content of the specified source file to the specified destination file.
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment