vfs icon indicating copy to clipboard operation
vfs copied to clipboard

s3: top level entries

Open momolog opened this issue 13 years ago • 2 comments

Given we have an S3 bucket with the following content:

dir1-
    |-subdir1
    |-subdir2
    |-file1
dir2-
    |-file2

Connecting to the bucket like in the s3-example, i would suspect to get the top-level "directories" dir1 and dir2 in the bucket by doing

box[''].entries

or

box['/'].entries

This does not work, the result is []

However, doing

box['dir1'].entries

we get back an array containing subdir1, subdir1 and file1 as expected.

So the behavior in the top level seems to be a bug.

momolog avatar May 27 '12 09:05 momolog

Agreed, the box['/'].entries should work, looks like a bug.

al6x avatar May 05 '13 23:05 al6x

This pull request should fix it: https://github.com/alexeypetrushin/vos/pull/8

momolog avatar May 12 '13 19:05 momolog