正如我在上面的评论中提到的,您需要使用可以从 Nuget 获得的最新版本的存储客户端库:http: //nuget.org/packages/WindowsAzure.Storage/。
这是示例代码:
open Microsoft.WindowsAzure.Storage
open Microsoft.WindowsAzure.Storage.Auth
open Microsoft.WindowsAzure.Storage.Blob
[<EntryPoint>]
let main argv =
let credentials = new StorageCredentials("accountname", "accountkey")
System.Console.WriteLine(credentials.AccountName)
let account = new CloudStorageAccount(credentials, true)
System.Console.WriteLine(account.BlobEndpoint)
let client = account.CreateCloudBlobClient();
let container = client.GetContainerReference "$logs"
System.Console.WriteLine(container.Uri)
let blobs = container.ListBlobs("", true, BlobListingDetails.All, null, null);
for blob in blobs do
System.Console.WriteLine(blob.Uri)
let response = System.Console.ReadLine()
0 // return an integer exit code
以上代码需要 Storage Client Library 2.0。
您只返回一项的原因是因为您正在调用ListBlobs
没有参数的函数。如果您在此处查看此函数的定义 ( http://msdn.microsoft.com/en-us/library/windowsazure/microsoft.windowsazure.storage.blob.cloudblobcontainer.listblobs.aspx ),您会发现可以通过将参数指定为 true 来获取 blob 容器中的所有 blob useFlatBlobListing
(我在上面的代码中这样做了)。试一试,它会返回你的 blob 容器中所有 blob 的列表。