我无法使用Python SDK将PDF上传到Data Lake。过去有人试过吗?。
请尝试以下代码:
try:
client = DataLakeServiceClient.from_connection_string(conn_str=my_connection_string)
file_system_client = client.get_file_system_client(file_system_name)
directory_client = file_system_client.get_directory_client(file_name)
file_client = directory_client.create_file("test.pdf")
f = open(local_path,'rb')
file_contents = f.read()
file_client.upload_data(file_contents, overwrite=True)
f.close()
except Exception as e:
print(e)
它对我有利。希望这能帮助到你。