Silverlight 中的 Azure Blob 存储浏览器
我想使用 Silverlight 制作一个 Azure Blob 存储浏览器,就像 CloudBerry Explorer 那样。我有一个 Azure 存储帐户和密钥,但我仍在选择应该使用哪个控件来显示文件列表(DataGrid?)。
对于编码,如何从 blob 容器中获取文件列表?
ps我正在使用 C#、Visual Studio 2010、Azure Project Web Role + Silverlight 项目
I would like to make an Azure Blob Storage browser using Silverlight, like CloudBerry Explorer does. I have an Azure Storage account and the keys, but I am still picking which Control I should use to display file list (DataGrid?).
For the coding, how can I fetch the file list from a blob container ?
p.s. I'm using C# , Visual Studio 2010 , Azure Project Web Role + Silverlight Project
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我开发了一个 silverlight 上传控件来完成这个任务。它通过将文件分割成块来上传文件,并在上传失败时重试块的上传。从 http://blobupload.codeplex.com/ 下载它并根据需要使用它。
I have developed a silverlight upload control that does exactly that. It uploads a file by splitting it into chunks and retries upload of chunks in case of failed upload. Download it from http://blobupload.codeplex.com/ and use it as you want it to.