(filepath, checkLength)
| 36 | }; |
| 37 | |
| 38 | function checkFile(filepath, checkLength) { |
| 39 | var FileClz = Java.use("java.io.File"); |
| 40 | var file = FileClz.$new(filepath); |
| 41 | return file.exists() && file.length() == checkLength; |
| 42 | }; |
| 43 | |
| 44 | |
| 45 | function discoverClass(className) { |