3

SkyDrive からテキスト ファイルを読み取り、IsolatedStorage に保存する WP8 (XAML & C#) アプリケーションを作成しています。

ファイルが読み取られているようですが、取得したデータはファイルの内容ではなくファイルの説明です。

SkyDrive 内のファイル名: 「myFile1.txt」
ファイルの内容: 「これはテスト ファイル 1 です」

私のコードは以下です:

private async void btnDownload_Click( object sender, System.Windows.RoutedEventArgs e )
    {
    string fileID = "file.17ff6330f5f26b89.17FF6330F5F26B89!1644";
    string filename = "myDownloadFile1.txt";
    var liveClient = new LiveConnectClient( LiveHelper.Session );

    // Download the file
    liveClient.BackgroundDownloadAsync( fileID, new Uri( "/shared/transfers/" + filename, UriKind.Relative ) );  

    // Read the file
    var FileData = await LoadDataFile< string >( filename );
    Debug.WriteLine( "FileData: " + (string)FileData );
    }


public async Task<string> LoadDataFile<T>( string fileName )
    {
    // Get a reference to the Local Folder
    string root = ApplicationData.Current.LocalFolder.Path;
    var storageFolder = await StorageFolder.GetFolderFromPathAsync( root + @"\shared\transfers" ); 

    bool IsFileExist = await StorageHelper.FileExistsAsync( fileName, storageFolder );
    if ( IsFileExist == true )
        {
        StorageFile storageFile = await storageFolder.GetFileAsync( fileName );
        if ( storageFile != null )
            {
            // Open it and read the contents
            Stream readStream = await storageFile.OpenStreamForReadAsync();
            using ( StreamReader reader = new StreamReader( readStream ) )
                {
                string _String = await reader.ReadToEndAsync();
                reader.Close();
                return _String;
                }
            }
        else
            {
            return string.Empty;
            }
        } 
    return string.Empty;
    }
}

このコードを実行しているデータは次のとおりです。

{
   "id": "file.17ff6330f5f26b89.17FF6330F5F26B89!1644", 
   "from": {
      "name": "Eitan Barazani", 
      "id": "17ff6330f5f26b89"
   }, 
   "name": "myFile1.txt", 
   "description": "", 
   "parent_id": "folder.17ff6330f5f26b89.17FF6330F5F26B89!1643", 
   "size": 23, 
   "upload_location": "https://apis.live.net/v5.0/file.17ff6330f5f26b89.17FF6330F5F26B89!1644/content/", 
   "comments_count": 0, 
   "comments_enabled": false, 
   "is_embeddable": true, 
   "source": "https://fculgq.bay.livefilestore.com/y2m0zkxi9kpb4orfYNSLSwst5Wy3Z7g6wDj7CM3B6wcOth9eA-gUflXeSCAAH_JWx2co72sgOTcGgvkwQGI3Gn5E1qXnRoKpVbsX_olRrB5gnCNIm8GrUrORco8_-je1cet/myFile1.txt?psid=1", 
   "link": "https://skydrive.live.com/redir.aspx?cid=17ff6330f5f26b89&page=view&resid=17FF6330F5F26B89!1644&parid=17FF6330F5F26B89!1643", 
   "type": "file", 
   "shared_with": {
      "access": "Just me"
   }, 
   "created_time": "2013-07-15T16:29:10+0000", 
   "updated_time": "2013-07-15T16:29:10+0000"
}

ファイル内のデータを取得できない理由がわかりません。私は何が間違っているのですか?

ありがとう、

4

3 に答える 3

3

私はあなたが必要だと思います:

liveClient.BackgroundDownloadAsync( fileID+"/content", new Uri( "/shared/transfers/" + filename, UriKind.Relative ) );

つまり、文字列の後に、メタデータではなくファイルの内容を取得するためfileIDに追加する必要がありました。"/content"

于 2013-07-16T11:15:55.550 に答える