gpt4 book ai didi

c# - 从文件流上传到 ADLS

转载 作者:行者123 更新时间:2023-11-30 17:32:28 24 4
gpt4 key购买 nike

我在 ADF 中进行自定义事件,其中涉及从 Azure 存储 Blob 读取多个文件,对它们进行一些处理,然后最终将生成的文件写入 Azure Data Lake Store。最后一步是我停止的地方,因为据我所知,.NET SDK 只允许从本地文件上传。

有什么方法可以(以编程方式)将文件上传到 ADL 商店,而不是来自本地文件?可以是 blob 或流。如果没有,有什么解决方法吗?

最佳答案

是的,可以从 Stream 上传,诀窍是先创建文件,然后将流附加到它:

string dataLakeAccount = "DLSAccountName";
var adlsFileSystemClient = new DataLakeStoreFileSystemManagementClient(credentials);
adlsFileSystemClient.FileSystem.Create(dataLakeAccount, filepath, overwrite: true);
adlsFileSystemClient.FileSystem.Append(dataLakeAccount, filepath, stream);

另见 this article .

关于c# - 从文件流上传到 ADLS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46645199/

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