Skip to content

移动文件

使用 cloud.storage.bucket(<bucket_name>) 对象中的 rename 方法可以移动云存储中的文件。就像操作本地文件一样简单!

示例代码

js
function main() {
    const result = cloud.storage.bucket('test').rename('/2.txt', '/3.txt') // 移动根目录下的 2.txt 文件到根目录下 3.txt
    if (!result) {
        return '移动文件失败'
    }
    return '移动文件成功'
}

技术支持、市场合作:wwwanghua@outlook.com