①测试转为归档模式
ossutil64.exe set-meta oss://haigongjiang/Upload X-Oss-Storage-Class:Archive -u -r
阿里云将归档文件转为标准模式
①解冻操作,执行如下命令:
ossutil64.exe restore oss://haigongjiang/Upload -r
说明:-r 表示递归操作目录下的所有文件
https://help.aliyun.com/document_detail/120058.html
②转为标准模式,执行如下命令:
ossutil64.exe set-meta oss://haigongjiang/Upload -r X-Oss-Storage-Class:Standard -u
说明:-r 表示递归操作目录下的所有文件
X-Oss-Storage-Class:Standard 表示标准模式,
-u 表示更新文件元信息
https://help.aliyun.com/document_detail/120056.htm
----------------------------------------------------以下为阿里云官方客服回答-------------------------------------------------------
小智根据您的描述,找到以下方案:
OSS生命周期是否支持将归档文件的自动恢复成为标准存储
您好,不支持将归档文件转变为标准存储,您可以通过ossutil解冻,然后再转换,参考文档:
https://help.aliyun.com/document_detail/50452.html
转换文件类型:
https://help.aliyun.com/document_detail/120056.html
解冻:
https://help.aliyun.com/document_detail/120058.html
您好,您先通过restore命令解冻文件,解冻文件参考:
https://help.aliyun.com/document_detail/120058.html
解冻后再将文件转换为标准存储或者低频存储,详见:
https://help.aliyun.com/document_detail/120056.htm
https://blog.csdn.net/dicyt/article/details/84906156
代码格式:
ossutil64.exe restore oss://baisc-erp/9.png ./ossutil64 restore oss://examplebucket/exampleobject.txt
ossutil64.exe set-meta oss://baisc-erp/9.png
设置目录所有文件为归档模式:
ossutil32.exe set-meta oss://baisc-erp/common/avatar X-Oss-Storage-Class:Archive -u -r
解冻目录里的所有文件:
ossutil32.exe restore oss://baisc-erp/common/avatar -r
设置目录所有文件为标准模式:
ossutil32.exe set-meta oss://baisc-erp/common/avatar -r X-Oss-Storage-Class:Standard -u