Skip to content

写入文件

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

示例代码

js
function main() {
    const result = cloud.storage
        .bucket('test')
        .writeFile('/README.md', '# Hello, World!') // 写入一段 # Hello, World! 文本到 test 存储桶根目录下的 README.md 文件中
    if (!result) {
        return '写入文件失败'
    }
    return '写入文件成功'
}

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