有没有一种方法可以使用pyocclient将大型文件下载为zip文件?

时间:2019-05-10 14:34:25

标签: python owncloud

我在owncloud中有一个文件夹,其中包含8k张图像,总计约12GB。我需要将这些图像从owncloud文件夹复制到Google驱动器中的文件夹。我无法在浏览器中下载它,因为它永远都在加载。有没有办法使用python下载它? 我尝试了pyocclient,像这样:

void BatFile()
{
    std::string filename, username;
    std::cout << "Name your save file in database:\n\n"; std::cin >> filename;
    filename = filename + ".bat";
    std::ofstream batout(filename);
    std::cout << "Username="; std::cin >> username;
    batout.open(filename);
    batout <<""; //write to bat file.
    batout.close();
}

,但在300MB左右下载结束后返回true。 请帮助大家..

0 个答案:

没有答案