假设我在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
重新上传相同的文件内容,以免浪费空间。
答案 0 :(得分:1)
不,您不能。 Azure Blob存储只是简单的对象存储,而不是具有软链接或硬链接的完整文件系统。
顺便说一句,您可以考虑按照以下答案模拟链接功能:Is there a way to do symbolic links to the blob data when using Azure Storage to avoid duplicate blobs?