I’m new to n8n and I’m reaching out for some help with a workflow I’m working on.
My goal is to retrieve multiple PDF files stored in a Google Drive folder and process them one by one. However, my current workflow only handles a single file, even though the folder contains multiple PDFs.
How can I set up my workflow to loop through each file and process them sequentially? What would be the best approach to achieve this?
File trigger will be fired for each file as a separate execution. If you want to process multiple files in one execution, you should set up a trigger to listen for folder changes. Once a folder event occurs, you should get the files from that folder and process them however you want.