OneDrive Upload/Download to Specified Directory

前端 未结 1 1705
遥遥无期
遥遥无期 2021-02-10 23:58

I\'m trying to use the Live SDK (v5.6) to include backup/restore from OneDrive in my Windows Phone 8.1 Silverlight application. I can read/write to the standard \"me/skydrive\"

1条回答
  •  感情败类
    2021-02-11 00:36

    Here's an extension method that checks if a folder is created and:

    1. If created returns the folder id.
    2. If not created, creates it and returns the folder id.

    You can then use this id to upload to and download from that folder.

    public async static Task CreateDirectoryAsync(this LiveConnectClient client,
    string folderName, string parentFolder)
        {
            string folderId = null;
    
            // Retrieves all the directories.
            var queryFolder = parentFolder + "/files?filter=folders,albums";
            var opResult = await client.GetAsync(queryFolder);
            dynamic result = opResult.Result;
    
            foreach (dynamic folder in result.data)
            {
                // Checks if current folder has the passed name.
                if (folder.name.ToLowerInvariant() == folderName.ToLowerInvariant())
                {
                    folderId = folder.id;
                    break;
                }
            }
    
            if (folderId == null)
            {
                // Directory hasn't been found, so creates it using the PostAsync method.
                var folderData = new Dictionary();
                folderData.Add("name", folderName);
                opResult = await client.PostAsync(parentFolder, folderData);
                result = opResult.Result;
    
                // Retrieves the id of the created folder.
                folderId = result.id;
            }
    
            return folderId;
        }
    

    You then use this as:

    string skyDriveFolder = await CreateDirectoryAsync(liveConnectClient, "", "me/skydrive");
    

    Now skyDriveFolder has the folder id that you can use when uploading and downloading. Here's a sample Upload:

    LiveOperationResult result = await liveConnectClient.UploadAsync(skyDriveFolder, fileName,
                                                      fileStream, OverwriteOption.Overwrite);
    

    ADDITION TO COMPLETE THE ANSWER BY YnotDraw

    Using what you provided, here's how to download a text file by specifying the file name. Below does not include if the file is not found and other potential exceptions, but here is what works when the stars align properly:

    public async static Task DownloadFileAsync(this LiveConnectClient client, string directory, string fileName)
        {
            string skyDriveFolder = await OneDriveHelper.CreateOrGetDirectoryAsync(client, directory, "me/skydrive");
            var result = await client.DownloadAsync(skyDriveFolder);
    
            var operation = await client.GetAsync(skyDriveFolder + "/files");
    
            var items = operation.Result["data"] as List;
            string id = string.Empty;
    
            // Search for the file - add handling here if File Not Found
            foreach (object item in items)
            {
                IDictionary file = item as IDictionary;
                if (file["name"].ToString() == fileName)
                {
                    id = file["id"].ToString();
                    break;
                }
            }
    
            var downloadResult= await client.DownloadAsync(string.Format("{0}/content", id));
    
            var reader = new StreamReader(downloadResult.Stream);
            string text = await reader.ReadToEndAsync();
            return text;
        }
    
    
    

    And in usage:

    var result = await DownloadFile(_client, "MyDir", "backup.txt");
    

    0 讨论(0)
    提交回复
    热议问题