从目录中压缩文件并将其放在另一个目录中

时间:2015-07-14 22:18:27

标签: python-2.7 zipfile

我正在尝试设置一个程序,将我的Minecraft服务器世界放入zip并将其放入另一个驱动器上的另一个目录中(/ media / 500gb / MinecraftWorldBackups) 但我一直收到这个错误

虽然该文件夹不包含名为“h”的文件夹或文件

enter image description here

我需要做些什么来解决这个问题我认为这是由文件和文件夹引起的?

 #!/usr/bin/env python
import time, zipfile

while True:
    FileName = 'MinecraftBackup_' + str(int(time.time()))
    Path =  '/home/bertie/Desktop/FeedTheBeastServer/world/' 
    print(FileName)
    Zip = zipfile.ZipFile('/media/500gb/MinecraftWorldBackups/'+FileName+'.zip','w')
    for each in Path:
        print(each)
        try: Zip.write(Path + each) 
        except IOError: None
    Zip.Close()
    print('Done')
    time.sleep(60)

0 个答案:

没有答案