如何在python中下载整个OneDrive文件夹

时间:2019-05-12 06:09:46

标签: python

我有一个公开共享的Microsoft One Drive文件夹。我想知道如何使用python下载所有内容。

我不拥有该文件夹。这只是一个公用文件夹。

1 个答案:

答案 0 :(得分:0)

According to this

root_folder = client.item(drive='me', id='root').children.get()
id_of_file = root_folder[0].id

client.item(drive='me', id=id_of_file).download('./path_to_download_to.txt')