Skip to content

读取文件

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

示例代码

js
function main() {
    const content = cloud.storage.bucket('test').readFile('/index.txt') // 读取 test 存储桶中根目录下的 index.txt 文件
    if (content == null) {
        return '读取文件失败'
    }
    return '读取文件成功,文件内容:' + content
}

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