相同的Blob内容有多个名称

时间:2019-09-13 19:38:20

标签: azure-storage azure-storage-blobs

假设我在Azure存储中有一个名为class AnotherHuman{ constructor(name, age){ this.name = name; this.age = age; } const student = AnotherHuman('Jack', 22); 的文件作为Blob。是否可以创建各种foo.txt或重定向网址,即使我访问link时也可以访问foo.txt的内容?

理想情况下,我也不想为bar.txt重新上传相同的文件内容,以免浪费空间。

1 个答案:

答案 0 :(得分:1)

不,您不能。 Azure Blob存储只是简单的对象存储,而不是具有软链接或硬链接的完整文件系统。

顺便说一句,您可以考虑按照以下答案模拟链接功能:Is there a way to do symbolic links to the blob data when using Azure Storage to avoid duplicate blobs?