Upload files to Google cloud storage using c#(使用 c# 将文件上传到谷歌云存储)
问题描述
我正在使用以下示例代码将文件上传到 Google 云存储(存储桶).从我的本地机器执行时它工作正常.但是在生产环境中执行时给了我以下异常.程序代码.
I am using the below sample code to upload the file into the Google cloud storage (Bucket). it is working properly when executed from my local machine. But is giving me the following exception when executed in the production environment. Program code.
public class Program
{
static void Main(string[] args)
{
try
{
string bucketName = "bucketName";
string sharedkeyFilePath = GetFilePath("privateKey.json");
GoogleCredential credential = null;
using (var jsonStream = new FileStream(sharedkeyFilePath, FileMode.Open,
FileAccess.Read, FileShare.Read))
{
credential = GoogleCredential.FromStream(jsonStream);
}
var storageClient = StorageClient.Create(credential);
string filetoUpload = GetFilePath("demo.txt");
using (var fileStream = new FileStream(filetoUpload, FileMode.Open,
FileAccess.Read, FileShare.Read))
{
storageClient.UploadObject(bucketName, "demo.txt", "text/plain", fileStream);
}
Console.WriteLine("uploaded the file successfully");
Console.ReadLine();
}
catch (Exception ex)
{
throw ex;
}
}
public static string GetFilePath(string filename)
{
return GetFilePath(Assembly.GetCallingAssembly().Location, filename);
}
public static string GetFilePath(string path, string filename)
{
return path.Substring(0, path.LastIndexOf("\")) + @"" + filename;
}
}
异常详情:
`A task was canceled.
at Google.Cloud.Storage.V1.StorageClientImpl.UploadHelper.CheckFinalProgress()
at Google.Cloud.Storage.V1.StorageClientImpl.UploadHelper.Execute()
at Google.Cloud.Storage.V1.StorageClientImpl.UploadObject(Object destination, Stream source, UploadObjectOptions options, IProgress`1 progress)
at Google.Cloud.Storage.V1.StorageClientImpl.UploadObject(String bucket, String objectName, String contentType, Stream source, UploadObjectOptions options, IProgress`1 progress)
at gcsUpload.Program.Main(String[] args) in d:Ganesh DeshmukhProjectsGCSgcsUploadgcsUploadProgram.cs:line 49
Google.Cloud.Storage.V1`
推荐答案
防火墙设置有问题.上面的代码工作正常.
There was an issue with firewall settings. Above code work properly.
这篇关于使用 c# 将文件上传到谷歌云存储的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 c# 将文件上传到谷歌云存储


基础教程推荐
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01