I’m trying to write the Python equivalent of Java’s:
fileList = dataFile("").listFiles();
I’m not seeing a listFiles()
in the Python reference. Am I missing it, or a work-around?
I’m trying to write the Python equivalent of Java’s:
fileList = dataFile("").listFiles();
I’m not seeing a listFiles()
in the Python reference. Am I missing it, or a work-around?
Use global variable this in order to access any PApplet member:
That is, replace dataFile('')
w/ this.dataFile('')