判断文件是否存在

更新时间: 2020-01-03 17:00:00

本节介绍如何判断文件是否存在。

以下代码用于判断指定的文件是否存在:

// Endpoint以华北三为例,其它Region请按实际情况填写。
String endpoint = "oss.cn-north-3.inspurcloudoss.com";
String accessKey = "<yourAccessKey>";
String secretKey = "<yourSecretKey>";
String bucketName = "<yourBucketName>";
String key = "<yourObjectName>";

//创建OSSClient实例
OSSClientImpl ossClient = new OSSClientImpl(endpoint, accessKey, secretKey);

//判断指定的文件是否存在,true表示存在
Boolean aBoolean = ossClient.doesObjectExist(bucketName, key);