【发布时间】:2021-05-09 10:19:13
【问题描述】:
我会自动在 google drive 上上传文件(使用 google drive API)。
我想在上传的时候重命名文件(因为它的标签原来是文件的完整路径目录,很长)。
我正在使用此功能将文件上传到gdrive:
def upload_file_gdrive(file_path, base_currency, gdrive_path_id):
# Authentication (automated using the config files)
# The config files should be dropped in the current working directory
gauth = GoogleAuth()
drive = GoogleDrive(gauth)
# Upload file on gdrive
print('Uploading the market data on google drive')
gfile = drive.CreateFile({'parents': [{'id': gdrive_path_id}]})
gfile.SetContentFile(file_path)
gfile.Upload() # Upload the file.
print('Market data upload on google drive successful')
我们有办法在上传文件时重命名文件吗?
干杯
【问题讨论】:
标签: python google-api google-drive-api pydrive