visual studio - Azure Blob Storage only shows one file at a time -


i have following method uploads file blob storage:

public static string uploadtoblob(string filepath, string container) {   if (!file.exists(filepath))     return string.empty;    var filecontent = file.readallbytes(filepath);    var filename = path.getfilename(filepath);   var blobpath = $"/{guid.newguid()}/{filename}";   var azstorage = new azureblobstorage(configurationhelper.getconnectionasstring("storageconnectionstring"));    return azstorage.upload(container, blobpath, filecontent, filename); } 

which execute inside foreach loop so:

fileprocessor.uploadtoblob(filepathlocal, storageblobcontainers.arcoextractionpdfs); 

when navigate insider server explorer, can see blob:

enter image description here

but when enter it, there's 1 file showing:

enter image description here

however, if delete file , hit refresh, 1 shows up, , repeating can see of them, 1 one..

enter image description here

how can see files in blob @ once?


Comments

Popular posts from this blog

matlab - error with cyclic autocorrelation function -

django - (fields.E300) Field defines a relation with model 'AbstractEmailUser' which is either not installed, or is abstract -

c# - What is a good .Net RefEdit control to use with ExcelDna? -