0
我正在使用亞馬遜S3存儲並且有意外的行爲:storage.exists()爲目錄返回False。我做的一切正確嗎?據我瞭解django文檔,它應該返回True https://docs.djangoproject.com/en/dev/ref/files/storage/s3boto意外的行爲
from storages.backends.s3boto import S3BotoStorage
s = S3BotoStorage(bucket='bucketname')
s.listdir('.')
([u'test_elf'], [u'327.jpg',u'avatar2.jpg'])
s.exists(u'avatar2.jpg')
True
s.exists(u'test_elf')
False <-- ??