سؤال

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