全部產品
Search
文件中心

Object Storage Service:iOS判斷檔案是否存在

更新時間:Aug 20, 2024

OSS iOS SDK提供了方便的同步介面以檢測Bucket中是否存在指定的檔案。

注意事項

  • 使用本文樣本前您需要先通過自訂網域名、STS等方式建立OSSClient,具體請參見初始化

    說明

    所建立儲存空間的所屬地區取決於初始化配置的endpoint地區資訊。

範例程式碼

以下代碼用於判斷指定檔案是否存在。

NSError * error = nil;
BOOL isExist = [client doesObjectExistInBucket:@"examplebucket" objectKey:@"file" error:&error];
if (!error) {
    if(isExist) {
        NSLog(@"File exists.");
    } else {
        NSLog(@"File not exists.");
    }
} else {
    NSLog(@"Error!");
}