我有这样的代码:
for file in file_list:
shutil.copyfile(file,newpath)
#do further actions
这是问题,在 #do further actions
我使用复制的文件时,我需要确保shutil.copyfile
函数完成它们的任务。我怎样才能确定这一点?
我有这样的代码:
for file in file_list:
shutil.copyfile(file,newpath)
#do further actions
这是问题,在 #do further actions
我使用复制的文件时,我需要确保shutil.copyfile
函数完成它们的任务。我怎样才能确定这一点?