You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.
Which service(blob, file, queue, table) does this issue concern?
blob
Which version of the SDK was used?
com.microsoft.azure
azure-storage
8.4.0
What problem was encountered?
when file name contains special characters ("鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥"), the CloudBlockBlob.exists() returns false, but the file is actually there.
Here is the example code:
Which service(blob, file, queue, table) does this issue concern?
blob
Which version of the SDK was used?
com.microsoft.azure azure-storage 8.4.0What problem was encountered?
when file name contains special characters ("鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥"), the CloudBlockBlob.exists() returns false, but the file is actually there.
Here is the example code:
String blobName = "EXP0000001/26-鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥.ppt"; CloudStorageAccount storageAccount = CloudStorageAccount.parse(storageConnectionString); CloudBlobClient blobClient = storageAccount.createCloudBlobClient(); CloudBlobContainer container = blobClient.getContainerReference(containerReference); CloudBlockBlob blob = container.getBlockBlobReference(blobName); System.out.println(blob.exists());
Have you found a mitigation/solution?
No
The text was updated successfully, but these errors were encountered: