Rackspace Cloud files, the PutStorageItem method is declared to take a local file path, can i use a variable instead?
API PutStorageItem(string ContainerName, string localFilePath);
My method is declared as
UploadItem(string username, string apiKey, string ContainerName, byte[] Item)
{
UserCredentials userCredentials = new UserCredentials(new Uri("https://auth.api.rackspacecloud.com/v1.0"), username, apiKey, null, null);
Connection connection = new com.mosso.cloudfiles.Connection(userCredentials);
connection.PutStorageItem(ContainerName, Item); //<--- X here
}
As you can see, PutStorageItem takes a local string path, but Item is declared as byte[]. Can I use a variable instead of the local path?