Hello
I have a such code:
for file in file_list:
shutil.copyfile(file,newpath)
#do further actions
And here is the question, at #do further actions
I use the copied f iles thus I need to make sure the shutil.copyfile
functions finish their task. How can I make sure of this ?