как создать папку в хранилище BLOB-объектов - PullRequest
0 голосов
/ 18 декабря 2018

У меня есть файл, такой как Parent.zip, и после распаковки он выдаст следующие файлы: child1.jpg, child2.txt, child3.pdf.

При запуске Parent.zip с помощью функции, указанной ниже,файлы правильно разархивированы в:

some-container/child1.jpg
some-container/child2.txt
some-container/child3.pdf

Как разархивировать файлы в их родительскую папку? Желаемый результат будет:

some-container/Parent/child1.jpg
some-container/Parent/child2.txt
some-container/Parent/child3.pdf

Как высм. выше, папка Parent была создана.

Я использую это для создания файлов в BLOB-объекте:

            using (var stream = entry.Open ()) {
                //check for file or folder and update the above blob reference with actual content from stream
                if (entry.Length > 0) {
                    await blob.UploadFromStreamAsync (stream);
                }
            }

Вот полный источник:

[FunctionName ("OnUnzipHttpTriggered")]
public static async Task<IActionResult> Run (
    [HttpTrigger (AuthorizationLevel.Function, "get", "post", Route = null)] HttpRequest req,
    ILogger log) {
    log.LogInformation ("C# HTTP trigger function processed a request.");

    var requestBody = new StreamReader (req.Body).ReadToEnd ();
    var data = JsonConvert.DeserializeObject<ZipFileMetaData> (requestBody);
    var storageAccount =
        CloudStorageAccount.Parse (Environment.GetEnvironmentVariable ("StorageConnectionString"));
    var blobClient = storageAccount.CreateCloudBlobClient ();
    var container = blobClient.GetContainerReference (data.SourceContainer);
    var blockBlob = container.GetBlockBlobReference (data.FileName);
    var extractcontainer = blockBlob.ServiceClient.GetContainerReference (data.DestinationContainer.ToLower ());
    await extractcontainer.CreateIfNotExistsAsync ();

    var files = new List<string> ();
    // Save blob(zip file) contents to a Memory Stream.
    using (var zipBlobFileStream = new MemoryStream ()) {
        await blockBlob.DownloadToStreamAsync (zipBlobFileStream);
        await zipBlobFileStream.FlushAsync ();
        zipBlobFileStream.Position = 0;
        //use ZipArchive from System.IO.Compression to extract all the files from zip file
        using (var zip = new ZipArchive (zipBlobFileStream)) {
            //Each entry here represents an individual file or a folder
            foreach (var entry in zip.Entries) {
                files.Add (entry.FullName);
                //creating an empty file (blobkBlob) for the actual file with the same name of file
                var blob = extractcontainer.GetBlockBlobReference (entry.FullName);
                using (var stream = entry.Open ()) {
                    //check for file or folder and update the above blob reference with actual content from stream
                    if (entry.Length > 0) {
                        await blob.UploadFromStreamAsync (stream);
                    }
                }

                // TO-DO : Process the file (Blob)
                //process the file here (blob) or you can write another process later
                //to reference each of these files(blobs) on all files got extracted to other container.
            }
        }
    }

    return new OkObjectResult (files);
}

1 Ответ

0 голосов
/ 18 декабря 2018

Просто добавьте имя каталога перед именем записи, и мы увидим, что каталог создан автоматически.

var blob = extractcontainer.GetBlockBlobReference ("Parent/"+entry.FullName);

Обратите внимание, что каталог виртуальный.Хранилище BLOB-объектов находится в структуре container/blob, каталоги фактически являются префиксами имен BLOB-объектов, а служба хранения отображает структуру каталогов в соответствии с разделителем / для нас.

...