我有一个公开共享的Microsoft One Drive文件夹。我想知道如何使用python下载所有内容。
我不拥有该文件夹。这只是一个公用文件夹。
答案 0 :(得分:0)
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')