我想下載一個PDF文件並將它存儲在FileStore在筆記本中使用這段代碼:
張開(' / dbfs / FileStore /文件。pdf”、“白平衡”)作為f: f.write (requests.get (“https://url.com/file.pdf”) .content)
但我得到這個錯誤:
FileNotFoundError(Errno 2):沒有這樣的文件或目錄
我做錯了什麼?
可能更容易使用curl commnad . .在筆記本電腦可以運行shell命令或python文件加載到本地司機臨時存儲
% sh / tmp / file.pdf curl https://url.com/file.pdf——輸出
或在python中
進口urlliburllib。請求。urlretrieve(“https://url.com/file.pdf”,“/ tmp / file.pdf.csv”)
然後將文件移到DBFS
dbutils。fs。mv(“文件:/ tmp / file.pdf”,“dbfs: / Filestore / file.pdf