0
votes

I am unable to upload PDF to Data Lake, using Python SDK. Did anyone try it in the past?.

1
What have you trie so far? Please add some code to your question...SwissCodeMen

1 Answers

0
votes

Please try the below code:

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)

It works on my side.Hope this can help you.