I have a code like this:
for file in file_list: shutil.copyfile(file,newpath)
And so the question is, in #do further actions I use the copied files, so I need to make sure that the shutil.copyfile functions complete their task. How can I be sure of this?
python shutil file-copying
Hellnar
source share