Why does a blob with filename $$$.$$$ appear in Azure directory listing?
问题 Does anyone know why when I list a blobs in a directory like this: var container = BlobClient.GetContainerReference(containerName); var blobs = container.GetDirectoryReference(fileStroageLocation).ListBlobs().ToList(); I find the two files I uploaded and an additional blob with the filename $$$.$$$. If I use an Azure file storage browser CloudXplorer I don't see the file. I can filter it out by ignoring that filename however. Just wondered why it was there? If there is special meaning to it?