我在 S3 上创建了一个密钥。
mykey.exists()
返回true
mykey.get_contents_to_filename()
生成正确的文件
但:
mykey.copy('bucket', '/backup/file')
返回:
NoSuchKey
The Specified key does not exist.
Key = mykey
看起来我正在使用 boto 2.0b4 如果密钥存在,为什么会出现NoSuchKey
错误?我错过了什么?
编辑:将键名中的反斜杠更改为我实际使用的前斜杠