MCPcopy Index your code
hub / github.com/benfry/processing4 / listFilesExt

Method listFilesExt

core/src/processing/core/PApplet.java:6038–6045  ·  view source on GitHub ↗
(String name, String[] extensions)

Source from the content-addressed store, hash-verified

6036
6037
6038 static private boolean listFilesExt(String name, String[] extensions) {
6039 for (String ext : extensions) {
6040 if (name.toLowerCase().endsWith(ext)) {
6041 return true;
6042 }
6043 }
6044 return false;
6045 }
6046
6047
6048 static void listFilesImpl(File folder, boolean recursive,

Callers 1

listFilesImplMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected