编程语言
首页 > 编程语言> > python – shutil.copyfile的替代品

python – shutil.copyfile的替代品

作者:互联网

我需要替代shutil模块,特别是shutil.copyfile.

这是一个鲜为人知的py2exe错误,使整个shutil模块无用.

解决方法:

os.system("cp file1 file2") ?

我不知道为什么shutil不能在py2exe中工作…你可能必须明确告诉py2exe包含该库…

标签:py2exe,python
来源: https://codeday.me/bug/20190901/1784802.html