我正在尝试连接网络和工作者角色。所以我有一个用户可以上传视频文件的页面。文件很大,所以我不能使用查询来发送文件。这就是我试图将它们上传到Blob存储然后通过查询发送URL的原因。但我不知道如何获得这个网址。
任何人都可以帮助我吗?
答案 0 :(得分:54)
假设您通过创建CloudBlockBlob
实例使用.Net存储客户端库将blob上传到blob存储中,您可以通过读取blob的Uri
属性来获取blob的URL。
static void BlobUrl()
{
var account = new CloudStorageAccount(new StorageCredentials(accountName, accountKey), true);
var cloudBlobClient = account.CreateCloudBlobClient();
var container = cloudBlobClient.GetContainerReference("container-name");
var blob = container.GetBlockBlobReference("image.png");
blob.UploadFromFile("File Path ....");//Upload file....
var blobUrl = blob.Uri.AbsoluteUri;
}
答案 1 :(得分:3)
截至2020年的完整Javascript解决方案:
const { BlobServiceClient } = require('@azure/storage-blob')
const AZURE_STORAGE_CONNECTION_STRING = '<connection string>'
async function main() {
// Create the BlobServiceClient object which will be used to create a container client
const blobServiceClient = BlobServiceClient.fromConnectionString(AZURE_STORAGE_CONNECTION_STRING);
// Make sure your container was created
const containerName = 'speechlab'
// Get a reference to the container
const containerClient = blobServiceClient.getContainerClient(containerName);
// Create a unique name for the blob
const blobName = 'quickstart.txt';
// Get a block blob client
const blockBlobClient = containerClient.getBlockBlobClient(blobName);
console.log('\nUploading to Azure storage as blob:\n\t', blobName);
// Upload data to the blob
const data = 'Hello, World!';
await blockBlobClient.upload(data, data.length);
console.log("Blob was uploaded successfully. requestId: ");
console.log("Blob URL: ", blockBlobClient.url)
}
main().then(() => console.log('Done')).catch((ex) => console.log(ex.message));
答案 2 :(得分:1)
当您使用更新的 “Azure Storage Blob” 包时,请使用以下代码。
BlobClient blobClient = containerClient.GetBlobClient("lg.jpg");
Console.WriteLine("Uploading to Blob storage as blob:\n\t {0}\n", containerClient.Uri);
using FileStream uploadFileStream = File.OpenRead(fileName);
if (uploadFileStream != null)
await blobClient.UploadAsync(uploadFileStream, true);
var absoluteUrl= blobClient.Uri.AbsoluteUri;
答案 3 :(得分:0)
对于python用户,您可以使用blob_client.url
不幸的是,它没有在docs.microsoft.com中记录
from azure.storage.blob import BlobServiceClient
# get your connection_string - look at docs
blob_service_client = BlobServiceClient.from_connection_string(connection_string)
container_client = blob_service_client.get_container_client(storage_container_name)
You can call blob_client.url
blob_client = container_client.get_blob_client("myblockblob")
with open("pleasedelete.txt", "rb") as data:
blob_client.upload_blob(data, blob_type="BlockBlob")
print(blob_client.url)
将返回
https://pleasedeleteblob.blob.core.windows.net/pleasedelete-blobcontainer/myblockblob
答案 4 :(得分:0)
这是 V12 方式。我不能保证我的变量名是准确的,但代码有效。
protected BlobContainerClient AzureBlobContainer
{
get
{
if (!isConfigurationLoaded) { throw new Exception("AzureCloud currently has no configuration loaded"); }
if (_azureBlobContainer == null)
{
if (!string.IsNullOrEmpty(_configuration.StorageEndpointConnection))
{
BlobServiceClient blobClient = new BlobServiceClient(_configuration.StorageEndpointConnection);
BlobContainerClient container = blobClient.GetBlobContainerClient(_configuration.StorageContainer);
container.CreateIfNotExists();
_azureBlobContainer = container;
}
}
return _azureBlobContainer;
}
}
public bool UploadFileToCloudStorage(string fileName, Stream fileStream)
{
BlobClient cloudFile = AzureBlobContainer.GetBlobClient(fileName);
cloudFile.DeleteIfExists();
fileStream.Position = 0;
cloudFile.Upload(fileStream);
return true;
}
public BlobClient UploadFileToCloudStorageWithResults(string fileName, Stream fileStream)
{
BlobClient cloudFile = AzureBlobContainer.GetBlobClient(fileName);
cloudFile.DeleteIfExists();
fileStream.Position = 0;
cloudFile.Upload(fileStream);
return cloudFile;
}
public Stream DownloadFileStreamFromCloudStorage(string fileName)
{
BlobClient cloudFile = AzureBlobContainer.GetBlobClient(fileName);
Stream fileStream = new MemoryStream();
cloudFile.DownloadTo(fileStream);
return fileStream;
}
答案 5 :(得分:-2)
抱歉,我不知道如何在答案中再次发表相同的评论。请在下面找到我的正确答案,并详细说明此存储Blob如何从Blob获取网址。
///在web.config文件中添加连接字符串,以便在需要时轻松进入多个位置。
<connectionStrings>
<add name="BlobStorageConnection" connectionString="DefaultEndpointsProtocol=https;AccountName=accName;AccountKey=xxxxxxxxxxxxxxxxxx YOU WILL FIND THIS in your AZURE ACCOUNT xxxxxxxxxx==;EndpointSuffix=core.windows.net"/>
这是您可以从web.config文件中获取的字符串。
string BlobConnectionString = ConfigurationManager.ConnectionStrings["BlobStorageConnection"].ConnectionString;
public string GetFileURL()
{
//This will create the storage account to get the details of account.
CloudStorageAccount cloudStorageAccount = CloudStorageAccount.Parse(BlobConnectionString);
//create client
CloudBlobClient cloudBlobClient = cloudStorageAccount.CreateCloudBlobClient();
//Get a container
CloudBlobContainer cloudBlobContainer = cloudBlobClient.GetContainerReference("ContainerName");
//From here we will get the URL of file available in Blob Storage.
var blob1 = cloudBlobContainer.GetBlockBlobReference(imageName);
string FileURL=blob1.Uri.AbsoluteUri;
return FileURL;
}
通过这种方式,如果您具有文件(或图片)名称,则可以获得文件的网址。