I have been looking at the documentation, testing examples and getting familiar with the Rackspace Cloud Files API. I got the basic code down, got the API key, got a username, the basic stuff. Now one thing confuses me, this problem is something that appears to be not well documented.
So what I am trying to do is to get all the objects, including folders and files in a container. I have tried this example:
IEnumerable<ContainerObject> containerObjects = cloudFilesProvider.ListObjects("storage",null,null,null,null,null,false,ci);
foreach(ContainerObject containerObject in containerObjects)
{
MessageBox.Show(containerObject.ToString());
}
This doesn't return the result I am looking for, it seems to not return anything.
I am using OpenStack provided by running this in the NuGet console:
Install-Package Rackspace
.
I am trying to create a file backup program for me and my family.