前提・実現したいこと
C#でGoogle.Cloud.Storageを利用したい。
ファイル(画像、CSVファイル)をアップロードしてサーバー上で見れる、ダウンロードできるようにしたい。
発生している問題・エラーメッセージ
下の画像はFirebaseのストレージ画面です。
Aのように画像が見れたり、右の名前のリンクからダウンロードしたいのですが、Bのようにロード中の表示になってしまいます。
A.手動で(ファイルをアップロードボタンから)アップロードしたもの。
該当のソースコード
C#
1using System; 2using System.Collections.Generic; 3using System.ComponentModel; 4using System.Data; 5using System.Drawing; 6using System.Linq; 7using System.Text; 8using System.Threading.Tasks; 9using System.Windows.Forms; 10using Google.Cloud.Storage.V1; 11using System.IO; 12 13namespace WindowsFormsApp1 14{ 15 public partial class Form1 : Form 16 { 17 public Form1() 18 { 19 InitializeComponent(); 20 } 21 22 private async void button1_Click(object sender, EventArgs e) 23 { 24 string accessKeyPath = "xxxxx-xxxx-xxxx-xxxx-xxxx-xxxxxxxx.json"; 25 Environment.SetEnvironmentVariable("GOOGLE_APPLICATION_CREDENTIALS", accessKeyPath); 26 var client = StorageClient.Create(); 27 28 var path = "a.csv"; 29 var fileName = Path.GetFileName(path); 30 using (var stream = File.OpenRead(path)) 31 { 32 var obj = await client.UploadObjectAsync( 33 bucket: "xxxxxxxxxxx.com", 34 objectName: fileName, 35 contentType: "application/octet-stream", 36 source: stream, 37 options: new UploadObjectOptions 38 { 39 PredefinedAcl = PredefinedObjectAcl.BucketOwnerFullControl, 40 }); 41 } 42 path = "cat.png"; 43 fileName = Path.GetFileName(path); 44 using (var stream = File.OpenRead(path)) 45 { 46 var obj = await client.UploadObjectAsync( 47 bucket: "xxxxxxxxxxx.com", 48 objectName: fileName, 49 contentType: "image/png", 50 source: stream, 51 options: new UploadObjectOptions 52 { 53 PredefinedAcl = PredefinedObjectAcl.BucketOwnerFullControl, 54 }); 55 } 56 57 } 58 } 59} 60
試したこと
参考にしたサイト1
参考にしたサイト2
参考にしたサイト3
サイトに反映されるのでaccessKeyPathやbucketは問題ないのではと思っています。
補足情報(FW/ツールのバージョンなど)
NuGetでGoogle.Cloud.Storage.V1の3.5.0をインストールしています。
フォームにボタン1を張り付けているだけのコードです。
回答1件
あなたの回答
tips
プレビュー