如何在rackspace中上传整个文件夹而不是逐个文件

时间:2015-06-01 10:17:09

标签: python rackspace-cloudfiles

现在我正在使用这样的线程,但速度很慢。我想要上传文件夹api。

def run(self):
        """Starts the uploading thread."""
        try:
            for file_name in self.files["thumbs"]:
                self.transfer_rackspace(file_name, self.container_thumbs)
        except Exception:
            pass
        try:
            for file_name in self.files["tiles"]:
                self.transfer_rackspace(file_name, self.container_tiles)
        except Exception:
            pass
        try:
            for file_name in self.files["cube"]:
                self.transfer_rackspace(file_name, self.container_photo)
        except Exception:
            pass
        try:
            for file_name in self.files["image"]:
                self.transfer_rackspace(file_name, self.container_photo)
        except Exception:
            pass

1 个答案:

答案 0 :(得分:0)

pyrax.settings.set('identity_type', 'rackspace')
pyrax.set_credentials(config.app_config["cdn.account.name"],
                          config.app_config["cdn.account.key"])
rack_conn = pyrax.cloudfiles
rack_conn.upload_folder(folder_path, container)