As mentioned in issue 92 directory deletes are broken for AWS. I traced it down to this:
|
await StorageClient.DeleteAsync(StorageOptions.Bucket, item.FullName, null, cancellationToken); |
item.FullName needs to be changed to item.Name, because we send in bucket as the first parameter for the DeleteAsync call. Otherwise nothing is deleted. It's working fine for Azure. I have not tested GCP.
As mentioned in issue 92 directory deletes are broken for AWS. I traced it down to this:
Storage/ManagedCode.Storage.Aws/AWSStorage.cs
Line 124 in eb9a113
item.FullNameneeds to be changed toitem.Name, because we send in bucket as the first parameter for theDeleteAsynccall. Otherwise nothing is deleted. It's working fine for Azure. I have not tested GCP.