Skip to content

.CDN_ACCESS_LOGS Folder listing is empty #5350

@cyberduck

Description

@cyberduck

d72cbab created the issue

CloudFiles Web interface shows heaps of files in this folder. I have successfully downloaded them using the cloudfiles-python module ... but CyberDuck shows this folder as being empty, despite the HTTP transcript saying there are 695 objects in the folder.
Screenshots attached.

FWIW .. here is some ropey python code that downloads the contents of CDN_ACCESS_LOGS ..

#mainline
ofolder = ".CDN_ACCESS_LOGS"
try:
    conn = cloudfiles.get_connection(username, apikey)
    container = conn.get_container(ofolder)
    lst = container.list_objects()
    for x in lst:
        obj = container.get_object(x)
        bn = os.path.split(x)
        savename = './cdnlogs/'+bn[1]
        if os.path.exists(savename):
            continue
        obj.save_to_filename(savename)
        print bn[1]+'\n'
except cloudfiles.errors.ResponseError, err:
    print ifile, ofolder, err

Attachments

Metadata

Metadata

Assignees

Labels

cloudfilesRackspace CloudFiles

Type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions