Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 :
log_file = AWS::S3::Bucket.logs_for('downloads.idance.net').first
然后我想删除我操作的每个文件,但不知道如何。
log_file.delete
不抛出任何方法错误
我最终以这种方式解决了这个问题:
log_file.instance_variable_get('@log').delete
日志文件有一个引用 s3 对象的实例变量。