文件只上传到根文件夹:
from pcloud import PyCloud
pc = PyCloud('username','password')
pc.uploadfile(files = ['pics\\img.png'])
我找不到任何参数,例如destination或dest。
文件只上传到根文件夹:
from pcloud import PyCloud
pc = PyCloud('username','password')
pc.uploadfile(files = ['pics\\img.png'])
我找不到任何参数,例如destination或dest。
你可以这样做:
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 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)
是可能的。