从文件共享读取图像路径并存储在表存储Azure中

问题描述 投票:0回答:1

我可以使用以下代码将图像上传到 Azure 文件共享中。

CloudStorageAccount cloudStorageAccount = ConnectionString.GetConnectionString();
            CloudFileClient cloudFileClient = cloudStorageAccount.CreateCloudFileClient();             
            CloudFileShare fileShare = cloudFileClient.GetShareReference("sampleimage");
           if (await fileShare.CreateIfNotExistsAsync())
            {
                await fileShare.SetPermissionsAsync(
                    new FileSharePermissions
                    {
                      
                    });
            }
            //fileShare.CreateIfNotExists();
          
            string imageName = Guid.NewGuid().ToString() + "-" + Path.GetExtension(imageToUpload.FileName);
            CloudFile cloudFile = fileShare.GetRootDirectoryReference().GetFileReference(imageName);
            cloudFile.Properties.ContentType = imageToUpload.ContentType;

            await cloudFile.UploadFromStreamAsync(imageToUpload.InputStream);

            imageFullPath = cloudFile.Uri.ToString();
        }
        catch (Exception ex)
        {

        }
        return imageFullPath;

这是我尝试读取文件路径的方式:[插入表之前]

public class ReadFileSharePath
{
    string Path = null;
    public string ReadFilePath()
    {
        
        try
        {
            CloudStorageAccount cloudStorageAccount = ConnectionString.GetConnectionString();
            CloudFileClient cloudFileClient = cloudStorageAccount.CreateCloudFileClient();
            CloudFileShare fileShare = cloudFileClient.GetShareReference("sampleimage");
            if (fileShare.Exists())
            {
                CloudFileDirectory rootdir = fileShare.GetRootDirectoryReference();

                CloudFileDirectory sampleDir = rootdir.GetDirectoryReference("sampleimage");

                if (sampleDir.Exists())
                {
                    // Get a reference to the file we created previously.
                    CloudFile file = sampleDir.GetFileReference("90e94676-492d-4c3c-beb2-1d8d48044e4e-.jpg");

                    // Ensure that the file exists.
                    if (file.Exists())
                    {
                        // Write the contents of the file to the console window.
                        //Console.WriteLine(file.DownloadTextAsync().Result);
                        Path = file.DownloadTextAsync().Result.ToString();
                    }
                }
            }

        }
        catch (Exception)
        {

            throw;
        }
        return Path;
       
    }

}

但是,这个if条件

if (sampleDir.Exists())

正在失败。并且控制没有进入循环。

我想将文件共享的路径存储在Azure表存储中。我想获取分区键和行键。我怎样才能实现这个目标?

c# azure azure-storage azure-table-storage azure-storage-files
1个回答
1
投票

正如@Gaurav所说,在使用上面的代码返回imageFullPath之后,您可以使用以下代码将路径存储在表存储中。

void SavePath(string fullpath)
        {
            CloudStorageAccount storageAccount = CloudStorageAccount.Parse(CloudConfigurationManager.GetSetting("StorageConnectionString"));

            // Create the table client.
            CloudTableClient tableClient = storageAccount.CreateCloudTableClient();

            // Create the CloudTable object that represents the "people" table.
            CloudTable table = tableClient.GetTableReference("people");

            // Create a new customer entity.
            CustomerEntity customer1 = new CustomerEntity("joey", "cai");
            customer1.path = fullpath;


            // Create the TableOperation object that inserts the customer entity.
            TableOperation insertOperation = TableOperation.Insert(customer1);

            // Execute the insert operation.
            table.Execute(insertOperation);
        }
        public class CustomerEntity : TableEntity
        {
            public CustomerEntity(string lastName, string firstName)
            {
                this.PartitionKey = lastName;
                this.RowKey = firstName;
            }

            public CustomerEntity() { }

            public string path { get; set; }

        }

注意:完整路径是您返回的imageFullPath。

编辑: 实体通过使用派生自 TableEntity 的自定义类映射到 C# 对象。 要将实体添加到表中,请创建一个定义实体属性的类。

上面的代码定义了一个实体类,该实体类使用客户的名字作为行键,姓氏作为分区键。实体的分区和行键一起在表中唯一地标识它。 要存储在表中的实体必须是受支持的类型,例如从 TableEntity 类派生。

上面的代码显示了

CloudTable
对象的创建,然后是
CustomerEntity
对象的创建。为了准备操作,需要创建一个
TableOperation
对象以将客户实体插入到表中。最后通过调用CloudTable.Execute
来执行操作。

更多详情可以参考这篇

文章

更新:

据我了解,行和分区键是唯一的,因此会出现错误。

因此,当您将第二个实体插入表中时,它使用相同的分区键和行键。因此,您可以保持分区键相同并更改行键值。 将下面的代码改成上面的:

CustomerEntity customer1 = new CustomerEntity("joey", "cai"+Guid.NewGuid()); customer1.path = fullpath; TableOperation insertOperation = TableOperation.Insert(customer1); table.Execute(insertOperation);
    
© www.soinside.com 2019 - 2024. All rights reserved.