I have to upload a file to Listen360 through webclient but my file is stored in Azure blob storage. When I give URL of saved file in blob storage as the path, it gives "URI formats are not supported."
UploadFile(URI, filename)
It work when I give a local path to filename but not for blob storage url of stored file.
Any suggestions?
UploadFile()
is. But... blobs are not the same as local files - you cannot use standard I/O libraries with blobs. Can you please edit your question to be more specific where you're passing the URL toUploadFile()
? (meaning... are you passing a blob url as thefilename
parameter?) – David Makogon