-1

I'm developing a small app in winforms using dotnet 5 to upload files to a container in the azure portal.. by the way it's working fine, but now i'd like to develop a service to upload a folder (not a single file), but cant figure out how to do it. It's not like to upload files. Somehow it's different and I've been looking for it for so long but cant find a solution.

Does anyone have an ideia?

Cheers

1 Answers1

0

If you are trying to upload an entire folder through your service programmatically, note that it is not supported.

Simply, you can create your blob called folder/1.txt for example, and it will work. No need to create a directory. So, to sum it up, you can create a folder like this and start uploading your files in that folder.

Check out Microsoft Azure: How to create sub directory in a blob container for more details.

Harshita Singh
  • 4,590
  • 1
  • 10
  • 13