Hello,
In a process, I have a Groovy script that returns a list of files from a directory :
import java.nio.file.Files;
File dir = new File(myDirectoryPath);
def listeFic = dir.list();
It works if the directory is on the server.
I would like to do the same in an application page or an instantiation form, with a local directory on user's PC.
I assume I have to create a JavaScript variable, but I don't know how to code it in JavaScript.
Since then, all my attempts don't work.
Any idea ?
Regards,
Thierry.