2

文件只上传到根文件夹:

from pcloud import PyCloud

pc = PyCloud('username','password')

pc.uploadfile(files = ['pics\\img.png'])

我找不到任何参数,例如destinationdest

4

2 回答 2

1

你可以这样做:

from pcloud import PyCloud

pc = PyCloud('username','password')

pc.uploadfile(files=['/full/path/to/image1.jpg', '/Users/tom/another/image.png'],
              path='/path-to-pcloud-dir')

参考:pcloud - pCloud 的 Python API 客户端

于 2021-05-05T16:20:55.617 回答
0

实际上,您可以使用pCloud API提供的所有方法。

两个都

>>> pc.uploadfile(files=['/full/path/to/image1.jpg', '/Users/tom/another/image.png'],
                  path='/path-to-pcloud-dir')

>>> pc.uploadfile(files=['/full/path/to/image1.jpg', '/Users/tom/another/image.png'],
                  folderid=0)

是可能的。

于 2021-10-08T19:53:39.010 回答