如何使用Rackspace OpenNetStack SDK创建子容器(目录)并上传它们?我在创建子容器时尝试添加"\"
,但它实际上创建了一个名为folder\subfolder
的容器,因为我无法在OpenNetStack SDK中找到有关如何添加子容器的任何内容。即便如此,手动创建子容器也不会太困难......但是上传到它们呢?
是否有人知道另一个可以创建/上传到子容器的Rackspace库?
答案 0 :(得分:2)
你非常接近!诀窍是在对象名称中放置URL路径分隔符/
,而不是在容器名称中。这就是OpenStack ObjectStorage API的工作方式,并不是特定于.NET SDK或Rackspace。
在下面的示例控制台应用程序中,我创建了一个容器images
,然后通过命名thumbnails/logo.png
将文件添加到该容器中的子目录中。生成的文件的公共URL将打印出来,基本上是容器的公共URL +文件名或http://abc123.r27.cf1.rackcdn.com/thumbnails/logo.png
。容器URL对每个容器和用户都是唯一的。
using System;
using net.openstack.Core.Domain;
using net.openstack.Providers.Rackspace;
namespace CloudFileSubdirectories
{
public class Program
{
public static void Main()
{
// Authenticate
const string region = "DFW";
var user = new CloudIdentity
{
Username = "username",
APIKey = "apikey"
};
var cloudfiles = new CloudFilesProvider(user);
// Create a container
cloudfiles.CreateContainer("images", region: region);
// Make the container publically accessible
long ttl = (long)TimeSpan.FromMinutes(15).TotalSeconds;
cloudfiles.EnableCDNOnContainer("images", ttl, region);
var cdnInfo = cloudfiles.GetContainerCDNHeader("images", region);
string containerPrefix = cdnInfo.CDNUri;
// Upload a file to a "subdirectory" in the container
cloudfiles.CreateObjectFromFile("images", @"C:\tiny-logo.png", "thumbnails/logo.png", region: region);
// Print out the URL of the file
Console.WriteLine($"Uploaded to {containerPrefix}/thumbnails/logo.png");
// Uploaded to http://abc123.r27.cf1.rackcdn.com/thumbnails/logo.png
}
}
}