I have a google apps script to upload files:
function doGet () {
...
select code file
...
return app;
}
doPost function (e) {
...
code add file to folder
...
return app;
}
I want to repeat n times the file uploads. How can I do? thanks
raffaele
With some help from Serge, I was able to finish what I started on this.