I\'ve already read this thread but when I implement it into my code it only works for a few iterations.
I\'m using python to iterate through a directory (lets call it m
For me shutil.copy is the best:
import shutil #make a copy of the invoice to work with src="invoice.pdf" dst="copied_invoice.pdf" shutil.copy(src,dst)
You can change the path of the files as you want.