Pregunta

I am saving pdf files in azure blob storage and the names of the files are generated dynamically. The file name is in format

assessmentLogId + "_" + DateTime.Now.Month + "." + DateTime.Now.Year + "." + DateTime.Now.Hour + "." + DateTime.Now.Minute + ".pdf"

where assessmentLogId is an integer. I want to find all files in blob storage that begins with assessmentLogId value. Is it possible to find that ?

¿Fue útil?

Solución

I could do it with ListBlobs method of CloudBlobContainer object.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top