I'm trying to save the string content into azure data lake as XML content.
a string variable contains below mentioned xml content.
<project> <dateformat>dd-MM-yy</dateformat> <timeformat>HH:mm</timeformat> <useCDATA>true</useCDATA> </project> i have used the below code to process the file into data lake.
xmlfilewrite = "/mnt/adls/ProjectDataDecoded.xml" with open(xmlfilewrite , "w") as f: f.write(project_processed_var) it throws the following error: No such file or directory: '/mnt/adls/ProjectDataDecoded.xml"
I'm able to access the data lake by using the above mounting point but unable do with the above function "open".
can anyone help me?