4

Azure ファイル ストレージからファイルをフェッチするプログラムを作成したいのですが、ディレクトリの深さが定義されておらずisFile、ファイルのプロパティが常に false を返すという問題があります。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using Microsoft.Azure; // Namespace for Azure Configuration Manager
using Microsoft.WindowsAzure.Storage; // Namespace for Storage Client Library
using Microsoft.WindowsAzure.Storage.Blob; // Namespace for Blob storage
using Microsoft.WindowsAzure.Storage.File; // Namespace for File storage

namespace AzureStorage
{
    class Program
    {
        static void Main(string[] args)
        {
            CloudStorageAccount storageAccount = CloudStorageAccount.Parse(CloudConfigurationManager.GetSetting("StorageConnectionString"));

            //CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();
            // Create a CloudFileClient object for credentialed access to File storage.
            CloudFileClient fileClient = storageAccount.CreateCloudFileClient();

            // Get a reference to the file share we created previously.
            CloudFileShare share = fileClient.GetShareReference("my-FileShare");

            // Ensure that the share exists.
            if (share.Exists())
            {
                // Get a reference to the root directory for the share.
                CloudFileDirectory rootDir = share.GetRootDirectoryReference();


                // Get a reference to the directory we created previously.
                CloudFileDirectory sampleDir = rootDir.GetDirectoryReference("FILES");

                // Ensure that the directory exists.
                if (sampleDir.Exists())
                {
                    var directoryLists = sampleDir.ListFilesAndDirectories();
                    //sampleDir.ge
                    foreach (var yearDirTemp in directoryLists)
                    {
                        var yearDir = sampleDir.GetDirectoryReference(
                                        Path.GetFileNameWithoutExtension(yearDirTemp.Uri.LocalPath)
                                        );
                        foreach (var monthDirTemp in yearDir.ListFilesAndDirectories())
                        {
                            var monthDir = yearDir.GetDirectoryReference(
                                            Path.GetFileNameWithoutExtension(monthDirTemp.Uri.LocalPath)
                                            );
                            foreach (var patientDirTemp in monthDir.ListFilesAndDirectories())
                            {
                                var patientDir = monthDir.GetDirectoryReference(
                                                   Path.GetFileNameWithoutExtension(patientDirTemp.Uri.LocalPath)
                                                   );
                                foreach (var patientDataTemp in patientDir.ListFilesAndDirectories())
                                {
                                    var patientData = patientDir.GetDirectoryReference(
                                                   Path.GetFileNameWithoutExtension(patientDataTemp.Uri.LocalPath)
                                                   );

                                   var fileList = patientData.ListFilesAndDirectories();
                                    foreach(var fileTemp in fileList)
                                    {
                                        // Here fileTemp could be file 
                                        // or directory containing more child directories
                                        var file1 = patientData.GetFileReference(Path.GetFileName(fileTemp.Uri.LocalPath));
                                        file1.FetchAttributes();
                                        byte[] arrTarget = new byte[file1.Properties.Length];
                                        file1.DownloadToByteArray(arrTarget, 0);                                        
                                    }

                                }
                            }

                        }                        
                    }
                }
            }
        }
    }
}
4

2 に答える 2

2

ディレクトリの深さは定義されておらず、ファイルの isFile プロパティは常に false を返します。

fileTemp が File のときに何らかのアクションを実行したい場合は、次のコードを試してください。GetType メソッドを使用してその型を取得し、次に name プロパティを使用してその型の値を取得できます。値が「CloudFile」の場合、ダウンロードなどのアクションを実行します。

 foreach (var fileTemp in fileList)
 {
     // Here fileTemp could be file 
     // or directory containing more child directories
     switch (fileTemp.GetType().Name)
     {
         case "CloudFile":
             var file1 = patientData.GetFileReference(Path.GetFileName(fileTemp.Uri.LocalPath));
             file1.FetchAttributes();
             byte[] arrTarget = new byte[file1.Properties.Length];
             file1.DownloadToByteArray(arrTarget, 0);
             break;
         case "CloudFileDirectory":
             break;
     }

 }
于 2016-07-23T01:59:42.750 に答える