[
https://issues.apache.org/jira/browse/JCLOUDS-1411?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16441192#comment-16441192
]
Russell Klopfer commented on JCLOUDS-1411:
------------------------------------------
My current work-around is to flag directory blobs by uploading a zero-length
payload and setting contentType to "application/directory". I can later do
{{blobStore.blobMetadata(...).getContentmetadata().getContentType()}} to check
if this blob is a directory.
> StorageType not maintained by filesystem BlobStore
> --------------------------------------------------
>
> Key: JCLOUDS-1411
> URL: https://issues.apache.org/jira/browse/JCLOUDS-1411
> Project: jclouds
> Issue Type: Bug
> Components: jclouds-blobstore
> Affects Versions: 2.0.0, 2.1.0, 2.0.3
> Environment: Windows7
> Reporter: Russell Klopfer
> Priority: Major
>
> The directory related methods on BlobStore are deprecated, so I am trying to
> update to the new directory-less scheme. However, when I do the following,
> {code:java}
> Blob dirBlob =
> blobStore.blobBuilder("some/path/").type(StorageType.FOLDER).build();
> blobStore.putBlob(containerName, dirBlob);
> BlobMetadata fetchedMeta = blobStore.blobMetadata(containterName,
> "some/path/");
> StorageType fetchedType = fetchedMeta.getType();{code}
> {{fetchedType}} (BLOB) does not match the type on {{dirBlob (FOLDER)}}.
> One place this causes problems is when these directories appear as normal
> blobs when doing a B{{lobStore.list()}}
>
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)