标签: python attributeerror
storefile(ftpcon, file, archive.open('NONVOL/'+file))
给我AttributeError:ZipFile实例没有属性open
open
但是当我将.open更改为.read时(由于open()在2.4中不可用)我得到:
.open
.read
AttributeError:str对象没有属性read
str
read
在:
ftpcon.storbinary('STOR ' + filename.strip(), file)