(String path, String... options)
| 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 |
no test coverage detected