Iterate over a list of files and move each of those files afterwards

for file in file_list: 
  content = read_file(file) # this returns a list 
  for entry in content: 
    process_entry(entry) 
  move_file(file)

I want to convert this python pseudo code into a n8n node.

The move_file should be called once for each file, no matter how many entries there are in content (even if 0).

Any idea on how to solve this in a clean and robust way would be much appreciated. Thanks in advance.