質問

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 ?

役に立ちましたか?

解決

I could do it with ListBlobs method of CloudBlobContainer object.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top