I'm currently trying to list files that are just contained in the root of a bucket in S3.
var listBlobsAsync = await _storageProvider.ListBlobsAsync("");
I expect to get a list of BlobDescriptors with the keys file1.txt, file2.txt and file3.txt for example but instead get ile1.txt, ile2.txt and ile3.txt
The problem occurs here because even when an empty string is provided, it will always trim at least one character.
|
Name = entry.Key.Remove(0, containerName.Length + 1), |
I'm currently trying to list files that are just contained in the root of a bucket in S3.
var listBlobsAsync = await _storageProvider.ListBlobsAsync("");I expect to get a list of BlobDescriptors with the keys
file1.txt, file2.txt and file3.txtfor example but instead getile1.txt, ile2.txt and ile3.txtThe problem occurs here because even when an empty string is provided, it will always trim at least one character.
TwentyTwenty.Storage/src/TwentyTwenty.Storage.Amazon/AmazonStorageProvider.cs
Line 380 in 2cceede