繁体   English   中英

Python - 上传 csv 文件到 Dropbox

[英]Python - upload csv file to Dropbox

如何使用 Python 将 csv 文件上传到 Dropbox


我尝试了下面这篇文章中的所有示例,均无效

从 python 脚本将文件上传到我的保管箱

我收到错误:

FileNotFoundError:[Errno 2] 没有这样的文件或目录:'User\pb\Automation\test.csv'


  • 我的用户名:pb
  • 文件夹名称:自动化
  • 文件名:test.csv

import pathlib
import dropbox
import re

# the source file
folder = pathlib.Path("User/pb/Automation") # located in folder
filename = "test.csv"         # file name
filepath = folder / filename  # path object, defining the file

# target location in Dropbox
target = "Automation"              # the target folder
targetfile = target + filename   # the target path and file name

# Create a dropbox object using an API v2 key
token = ""
d = dropbox.Dropbox(token)

# open the file and upload it
with filepath.open("rb") as f:
   # upload gives you metadata about the file
   # we want to overwite any previous version of the file
    meta = d.files_upload(f.read(), targetfile, mode=dropbox.files.WriteMode("overwrite"))

# create a shared link
link = d.sharing_create_shared_link(targetfile)

# url which can be shared
url = link.url

# link which directly downloads by replacing ?dl=0 with ?dl=1
dl_url = re.sub(r"\?dl\=0", "?dl=1", url)
print (dl_url)



FileNotFoundError: [Errno 2] No such file or directory: 'User\\pb\\Automation\\test.csv'



错误消息表明您正在提供“User\pb\Automation\test.csv”的本地路径,但在本地文件系统上的该路径上没有找到任何内容。

根据路径格式,您似乎在 macOS 上,但您访问主文件夹的路径错误。 路径应以“/”开头,主文件夹位于“用户”(而不是“用户”)下,因此您的folder定义可能应该是:

folder = pathlib.Path("/Users/pb/Automation")

或者,使用pathlib.Path.home()自动为您展开主文件夹:

pathlib.Path.home() / "Automation"

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM