gpt4 book ai didi

c# - 如何将文件添加到 Azurite [Azure 存储模拟器]

转载 作者:行者123 更新时间:2023-12-05 06:13:37 25 4
gpt4 key购买 nike

我很难弄清楚如何将文件添加到此模拟器,以便在本地测试 azure blob 的不同操作。

最佳答案

安装 azurite 后,您需要手动启动它。

enter image description here

有两种方式连接Azurite:

1. enter image description here

2. enter image description here

enter image description here

下一步我觉得和在云端使用azure storage是一样的,只需要使用sdk进行blob操作即可:

var blobHost = Environment.GetEnvironmentVariable("AZURE_STORAGE_BLOB_HOST");  // 126.0.0.1:10000
var account = Environment.GetEnvironmentVariable("AZURE_STORAGE_ACCOUNT"); // devstoreaccount1
var container = Environment.GetEnvironmentVariable("AZURE_STORAGE_CONTAINER");
var emulator = account == "devstoreaccount1";
var blobBaseUri = $"https://{(emulator ? $"{blobHost}/{account}" : $"{account}.{blobHost}")}/";
var blobContainerUri = $"{blobBaseUri}{container}";

// Generate random string for blob content and file name
var content = Guid.NewGuid().ToString("n").Substring(0, 8);
var file = $"{content}.txt";

// With container uri and DefaultAzureCredential
// Since we are using the Azure Identity preview version, DefaultAzureCredential will use your Azure CLI token.
var client = new BlobContainerClient(new Uri(blobContainerUri), new DefaultAzureCredential());

// Create container
await client.CreateIfNotExistsAsync();

// Get content stream
using var stream = new MemoryStream(Encoding.ASCII.GetBytes(content));

// Upload blob
await client.UploadBlobAsync(file, stream);

可以引用这个官方document ,它有更详细的教程。或者可以引用这个blog .

关于c# - 如何将文件添加到 Azurite [Azure 存储模拟器],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63252943/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com