https://github.com/rackspace/csharp-cloudfilesを使用してコマンドライン ツールを構築し、ファイルを Rackspace Cloud Files にアップロードしています。
問題は、アップロードの進行状況を追跡する方法がわからないことです (イベントなどはないようです)。
コードは次のとおりです。
// Create credentials, client and connection
var creds = new UserCredentials(username, apiKey);
CF_Client client = new CF_Client();
Connection conn = new CF_Connection(creds, client);
conn.Authenticate();
// Get container and upload file
var container = new CF_Container(conn, client, containerName);
var obj = new CF_Object(conn, container, client, remoteFileName);
obj.WriteFromFile(localFilePath);