gpt4 book ai didi

c# - Azure Blob 不存储 PDF

转载 作者:行者123 更新时间:2023-12-03 01:57:09 24 4
gpt4 key购买 nike

好的,我有以下代码——它非常适合存储 jpg,但不存储 pdf。知道为什么吗?

 public bool TryStoreImage(string uri, string fileName)
{
try
{
WebClient wc = new WebClient();
var blob = new BlobStorage().GetCloudBlobContainer();

var store = blob.GetBlobReference(fileName);
store.UploadByteArray(wc.DownloadData(uri));
return true;
}
catch (Exception exc)
{
return false;
}
}

`

同样,我尝试访问的每个 pdf 都会显示“pdf 不存在”,即使我可以在 azure 管理屏幕中看到该 pdf。然而,我存储的每个 jpg 都可以完全访问。

最佳答案

“pdf 不存在”是什么意思?什么工具告诉你这个?您如何访问该 blob?如果不知道这一点,就不可能真正弄清楚它,但我推测缺乏内容类型是一个问题。尝试store.Properties.ContentType =“application/pdf”

——smarx

关于c# - Azure Blob 不存储 PDF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12719818/

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