-
-
Notifications
You must be signed in to change notification settings - Fork 322
Closed
Description
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, errAttachments
grab 2010-10-20 at 11.02.04 PM.png(85.4 KiB)grab 2010-10-20 at 9.57.57 PM.png(47.0 KiB)grab 2010-10-20 at 9.59.30 PM.png(36.7 KiB)
Metadata
Metadata
Assignees
Labels
cloudfilesRackspace CloudFilesRackspace CloudFiles