MCPcopy Index your code
hub / github.com/processing/processing / listFiles

Method listFiles

core/src/processing/core/PApplet.java:6761–6768  ·  view source on GitHub ↗
(String path, String... options)

Source from the content-addressed store, hash-verified

6759
6760
6761 public File[] listFiles(String path, String... options) {
6762 File file = new File(path);
6763 // if not an absolute path, make it relative to the sketch folder
6764 if (!file.isAbsolute()) {
6765 file = sketchFile(path);
6766 }
6767 return listFiles(file, options);
6768 }
6769
6770
6771 // "relative" -> no effect with the Files version, but important for listPaths

Callers 2

listPathsMethod · 0.95
listFilesImplMethod · 0.45

Calls 5

sketchFileMethod · 0.95
splitMethod · 0.95
listFilesImplMethod · 0.95
startsWithMethod · 0.80
equalsMethod · 0.45

Tested by

no test coverage detected