When reading a CSV file in DropBox using dotnet maui, the data becomes HTML instead of the contents of the CSV file.

康二郎 井上 60 評価のポイント
2024-08-21T12:47:33.4166667+00:00

string fileUrl = "https://www.dropbox.com/scl/fi/sulx4lr91qy98a12pclzu/XXXX.csv?dl=1";

string localPath = Path.Combine(FileSystem.Current.AppDataDirectory, "XXXX.csv");

System.Diagnostics.Debug.WriteLine($"Local file path: {localPath}");

try

{ // download of the file

var response = await client.GetAsync(fileUrl);

response.EnsureSuccessStatusCode();

//

var fileBytes = await response.Content.ReadAsByteArrayAsync();

//

await File.WriteAllBytesAsync(localPath, fileBytes);

Debug.WriteLine("The download was successful."); }

catch (Exception ex)

{

Debug.WriteLine("Download failed.");

Debug.WriteLine($"Error: {ex.Message}"); }

C#
C#
C 言語ファミリをルーツとし、コンポーネント指向プログラミングのサポートを含む、オブジェクト指向およびタイプセーフのプログラミング言語。
32 件の質問
{count} 件の投票

お客様の回答

回答は、質問作成者が [承諾された回答] としてマークできます。これは、ユーザーが回答が作成者の問題を解決したことを知るのに役立ちます。