หน้านี้ยังไม่พร้อมใช้งานในภาษาท้องถิ่นของคุณ เรากำลังพยายามอย่างหนักเพื่อเพิ่มเวอร์ชันภาษาอื่น ๆ เพิ่มเติม ขอบคุณสำหรับการสนับสนุนเสมอมา

Compute
Elastic Cloud Server
Huawei Cloud Flexus
Bare Metal Server
Auto Scaling
Image Management Service
Dedicated Host
FunctionGraph
Cloud Phone Host
Huawei Cloud EulerOS
Networking
Virtual Private Cloud
Elastic IP
Elastic Load Balance
NAT Gateway
Direct Connect
Virtual Private Network
VPC Endpoint
Cloud Connect
Enterprise Router
Enterprise Switch
Global Accelerator
Management & Governance
Cloud Eye
Identity and Access Management
Cloud Trace Service
Resource Formation Service
Tag Management Service
Log Tank Service
Config
OneAccess
Resource Access Manager
Simple Message Notification
Application Performance Management
Application Operations Management
Organizations
Optimization Advisor
IAM Identity Center
Cloud Operations Center
Resource Governance Center
Migration
Server Migration Service
Object Storage Migration Service
Cloud Data Migration
Migration Center
Cloud Ecosystem
KooGallery
Partner Center
User Support
My Account
Billing Center
Cost Center
Resource Center
Enterprise Management
Service Tickets
HUAWEI CLOUD (International) FAQs
ICP Filing
Support Plans
My Credentials
Customer Operation Capabilities
Partner Support Plans
Professional Services
Analytics
MapReduce Service
Data Lake Insight
CloudTable Service
Cloud Search Service
Data Lake Visualization
Data Ingestion Service
GaussDB(DWS)
DataArts Studio
Data Lake Factory
DataArts Lake Formation
IoT
IoT Device Access
Others
Product Pricing Details
System Permissions
Console Quick Start
Common FAQs
Instructions for Associating with a HUAWEI CLOUD Partner
Message Center
Security & Compliance
Security Technologies and Applications
Web Application Firewall
Host Security Service
Cloud Firewall
SecMaster
Anti-DDoS Service
Data Encryption Workshop
Database Security Service
Cloud Bastion Host
Data Security Center
Cloud Certificate Manager
Edge Security
Managed Threat Detection
Blockchain
Blockchain Service
Web3 Node Engine Service
Media Services
Media Processing Center
Video On Demand
Live
SparkRTC
MetaStudio
Storage
Object Storage Service
Elastic Volume Service
Cloud Backup and Recovery
Storage Disaster Recovery Service
Scalable File Service Turbo
Scalable File Service
Volume Backup Service
Cloud Server Backup Service
Data Express Service
Dedicated Distributed Storage Service
Containers
Cloud Container Engine
SoftWare Repository for Container
Application Service Mesh
Ubiquitous Cloud Native Service
Cloud Container Instance
Databases
Relational Database Service
Document Database Service
Data Admin Service
Data Replication Service
GeminiDB
GaussDB
Distributed Database Middleware
Database and Application Migration UGO
TaurusDB
Middleware
Distributed Cache Service
API Gateway
Distributed Message Service for Kafka
Distributed Message Service for RabbitMQ
Distributed Message Service for RocketMQ
Cloud Service Engine
Multi-Site High Availability Service
EventGrid
Dedicated Cloud
Dedicated Computing Cluster
Business Applications
Workspace
ROMA Connect
Message & SMS
Domain Name Service
Edge Data Center Management
Meeting
AI
Face Recognition Service
Graph Engine Service
Content Moderation
Image Recognition
Optical Character Recognition
ModelArts
ImageSearch
Conversational Bot Service
Speech Interaction Service
Huawei HiLens
Video Intelligent Analysis Service
Developer Tools
SDK Developer Guide
API Request Signing Guide
Terraform
Koo Command Line Interface
Content Delivery & Edge Computing
Content Delivery Network
Intelligent EdgeFabric
CloudPond
Intelligent EdgeCloud
Solutions
SAP Cloud
High Performance Computing
Developer Services
ServiceStage
CodeArts
CodeArts PerfTest
CodeArts Req
CodeArts Pipeline
CodeArts Build
CodeArts Deploy
CodeArts Artifact
CodeArts TestPlan
CodeArts Check
CodeArts Repo
Cloud Application Engine
MacroVerse aPaaS
KooMessage
KooPhone
KooDrive

Listing Objects

Updated on 2024-04-30 GMT+08:00
NOTICE:

If you have any questions during development, post them on the Issues page of GitHub. For details about parameters and usage of each API, see API Reference.

You can call ObsClient->listObjects to list objects in a bucket.

The following table describes the parameters involved in this API.

Parameter

Description

Prefix

Name prefix that the objects to be listed must contain

Marker

Object name to start with when listing objects in a bucket. All objects are listed in the lexicographical order.

MaxKeys

Maximum number of objects listed in the response. The value ranges from 1 to 1000. If the value is not in this range, 1000 objects are listed by default.

Delimiter

Character used to group object names. If the object name contains the Delimiter parameter, the character string from the first character to the first delimiter in the object name is grouped under a single result element, CommonPrefix. (If a prefix is specified in the request, the prefix must be removed from the object name.)

For a parallel file system, if this parameter is not specified, all the content in the directory is recursively listed by default, and subdirectories are also listed. In big data scenarios, parallel file systems usually have deep directory levels and each directory has a large number of files. In such case, you are advised to configure [delimiter='/'] to list the content in the current directory, but not list subdirectories, thereby improving the listing efficiency.

Listing Objects in Simple Mode

The following sample code shows how to list objects in simple mode. A maximum of 1000 objects can be listed.

// Import the dependency library.
require 'vendor/autoload.php';
// Import the SDK code library during source code installation.
// require 'obs-autoloader.php';
// Declare the namespace.
use Obs\ObsClient;
// Create an instance of ObsClient.
$obsClient = new ObsClient ( [ 
      //Obtain an AK/SK pair using environment variables or import the AK/SK pair in other ways. Using hard coding may result in leakage.
      //Obtain an AK/SK pair on the management console. For details, see https://support.huaweicloud.com/intl/en-us/usermanual-ca/ca_01_0003.html.      'key' => getenv('ACCESS_KEY_ID'),
      'secret' => getenv('SECRET_ACCESS_KEY'),
      'endpoint' => 'https://your-endpoint',
      'signature' => 'obs'
] );

$resp = $obsClient->listObjects ( [ 
       'Bucket' => 'bucketname' 
] );

printf ( "RequestId:%s\n", $resp ['RequestId'] );
foreach ( $resp ['Contents'] as $index => $content ) {
       printf ( "Contents[%d]\n", $index + 1 );
       printf ( "Key:%s\n", $content ['Key'] );
       printf ( "LastModified:%s\n", $content ['LastModified'] );
       printf ( "ETag:%s\n", $content ['ETag'] );
       printf ( "Size:%s\n", $content ['Size'] );
       printf ( "Owner[ID]:%s\n", $content ['Owner'] ['ID'] );
       printf ( "StorageClass:%s\n", $content ['StorageClass'] );
}
NOTE:
  • A maximum of 1,000 objects can be listed each time. If a bucket contains more than 1,000 objects, IsTruncated in the response is true, indicating not all objects were listed. In such case, you can use NextMarker to obtain the start position for next listing.
  • If you want to obtain all objects in a specified bucket, you can use the paging mode for listing objects.

Listing Objects by Specifying the Number

Sample code:

// Import the dependency library.
require 'vendor/autoload.php';
// Import the SDK code library during source code installation.
// require 'obs-autoloader.php';
// Declare the namespace.
use Obs\ObsClient;
// Create an instance of ObsClient.
$obsClient = new ObsClient ( [ 
      //Obtain an AK/SK pair using environment variables or import the AK/SK pair in other ways. Using hard coding may result in leakage.
      //Obtain an AK/SK pair on the management console. For details, see https://support.huaweicloud.com/intl/en-us/usermanual-ca/ca_01_0003.html.      'key' => getenv('ACCESS_KEY_ID'),
      'secret' => getenv('SECRET_ACCESS_KEY'),
      'endpoint' => 'https://your-endpoint',
      'signature' => 'obs'
] );

$resp = $obsClient->listObjects ( [ 
       'Bucket' => 'bucketname',
       // Specify the number of objects to be listed to 100.
       'MaxKeys' => 100
] );

printf ( "RequestId:%s\n", $resp ['RequestId'] );
foreach ( $resp ['Contents'] as $index => $content ) {
       printf ( "Contents[%d]\n", $index + 1 );
       printf ( "Key:%s\n", $content ['Key'] );
       printf ( "LastModified:%s\n", $content ['LastModified'] );
       printf ( "ETag:%s\n", $content ['ETag'] );
       printf ( "Size:%s\n", $content ['Size'] );
       printf ( "Owner[ID]:%s\n", $content ['Owner'] ['ID'] );
       printf ( "StorageClass:%s\n", $content ['StorageClass'] );
}

Listing Objects by Specifying a Prefix

Sample code:

// Import the dependency library.
require 'vendor/autoload.php';
// Import the SDK code library during source code installation.
// require 'obs-autoloader.php';
// Declare the namespace.
use Obs\ObsClient;
// Create an instance of ObsClient.
$obsClient = new ObsClient ( [ 
      //Obtain an AK/SK pair using environment variables or import the AK/SK pair in other ways. Using hard coding may result in leakage.
      //Obtain an AK/SK pair on the management console. For details, see https://support.huaweicloud.com/intl/en-us/usermanual-ca/ca_01_0003.html.      'key' => getenv('ACCESS_KEY_ID'),
      'secret' => getenv('SECRET_ACCESS_KEY'),
      'endpoint' => 'https://your-endpoint',
      'signature' => 'obs'
] );

$resp = $obsClient->listObjects ( [ 
       'Bucket' => 'bucketname',
       // Set the prefix to prefix and the number of objects to be listed to 100.
       'MaxKeys' => 100,
       'Prefix' => 'prefix'
] );

printf ( "RequestId:%s\n", $resp ['RequestId'] );
foreach ( $resp ['Contents'] as $index => $content ) {
       printf ( "Contents[%d]\n", $index + 1 );
       printf ( "Key:%s\n", $content ['Key'] );
       printf ( "LastModified:%s\n", $content ['LastModified'] );
       printf ( "ETag:%s\n", $content ['ETag'] );
       printf ( "Size:%s\n", $content ['Size'] );
       printf ( "Owner[ID]:%s\n", $content ['Owner'] ['ID'] );
       printf ( "StorageClass:%s\n", $content ['StorageClass'] );
}

Listing Objects by Specifying the Start Position

Sample code:

// Import the dependency library.
require 'vendor/autoload.php';
// Import the SDK code library during source code installation.
// require 'obs-autoloader.php';
// Declare the namespace.
use Obs\ObsClient;
// Create an instance of ObsClient.
$obsClient = new ObsClient ( [ 
      //Obtain an AK/SK pair using environment variables or import the AK/SK pair in other ways. Using hard coding may result in leakage.
      //Obtain an AK/SK pair on the management console. For details, see https://support.huaweicloud.com/intl/en-us/usermanual-ca/ca_01_0003.html.      'key' => getenv('ACCESS_KEY_ID'),
      'secret' => getenv('SECRET_ACCESS_KEY'),
      'endpoint' => 'https://your-endpoint',
      'signature' => 'obs'
] );

$resp = $obsClient->listObjects ( [ 
       'Bucket' => 'bucketname',
       // Set that 100 objects whose names follow test in lexicographical order will be listed.
       'MaxKeys' => 100,
       'Marker' => 'test'
] );

printf ( "RequestId:%s\n", $resp ['RequestId'] );
foreach ( $resp ['Contents'] as $index => $content ) {
       printf ( "Contents[%d]\n", $index + 1 );
       printf ( "Key:%s\n", $content ['Key'] );
       printf ( "LastModified:%s\n", $content ['LastModified'] );
       printf ( "ETag:%s\n", $content ['ETag'] );
       printf ( "Size:%s\n", $content ['Size'] );
       printf ( "Owner[ID]:%s\n", $content ['Owner'] ['ID'] );
       printf ( "StorageClass:%s\n", $content ['StorageClass'] );
}

Listing All Objects in Paging Mode

Sample code:

// Import the dependency library.
require 'vendor/autoload.php';
// Import the SDK code library during source code installation.
// require 'obs-autoloader.php';
// Declare the namespace.
use Obs\ObsClient;
// Create an instance of ObsClient.
$obsClient = new ObsClient ( [ 
      //Obtain an AK/SK pair using environment variables or import the AK/SK pair in other ways. Using hard coding may result in leakage.
      //Obtain an AK/SK pair on the management console. For details, see https://support.huaweicloud.com/intl/en-us/usermanual-ca/ca_01_0003.html.
      'key' => getenv('ACCESS_KEY_ID'),
      'secret' => getenv('SECRET_ACCESS_KEY'),
      'endpoint' => 'https://your-endpoint',
      'signature' => 'obs'
] );

$marker = null;
$index = 1;
do {
              
       $resp = $obsClient->listObjects ( [ 
              'Bucket' => 'bucketname',
              // Set the number of parts displayed per page to 100.
              'MaxKeys' => 100,
              'Marker' => $marker
       ] );
       
       printf ( "RequestId:%s\n", $resp ['RequestId'] );
       foreach ( $resp ['Contents'] as $content ) {
              printf ( "Contents[%d]\n", $index );
              printf ( "Key:%s\n", $content ['Key'] );
              printf ( "LastModified:%s\n", $content ['LastModified'] );
              printf ( "ETag:%s\n", $content ['ETag'] );
              printf ( "Size:%s\n", $content ['Size'] );
              printf ( "Owner[ID]:%s\n", $content ['Owner'] ['ID'] );
              printf ( "StorageClass:%s\n", $content ['StorageClass'] );
              $index ++;
       }
       $marker = $resp['NextMarker'];    
}while($resp['IsTruncated']);

Listing All Objects in a Folder

There is no folder concept in OBS. All elements in buckets are objects. Folders are actually objects whose sizes are 0 and whose names end with a slash (/). When you set a folder name as the prefix, objects in this folder will be listed. Sample code is as follows:

// Import the dependency library.
require 'vendor/autoload.php';
// Import the SDK code library during source code installation.
// require 'obs-autoloader.php';
// Declare the namespace.
use Obs\ObsClient;
// Create an instance of ObsClient.
$obsClient = new ObsClient ( [ 
      //Obtain an AK/SK pair using environment variables or import the AK/SK pair in other ways. Using hard coding may result in leakage.
      //Obtain an AK/SK pair on the management console. For details, see https://support.huaweicloud.com/intl/en-us/usermanual-ca/ca_01_0003.html.
      'key' => getenv('ACCESS_KEY_ID'),
      'secret' => getenv('SECRET_ACCESS_KEY'),
      'endpoint' => 'https://your-endpoint',
      'signature' => 'obs'
] );

$marker = null;
$index = 1;
do {
              
       $resp = $obsClient->listObjects ( [ 
              'Bucket' => 'bucketname',
              'MaxKeys' => 1000,
              // Set the prefix of the folders to dir/.
              'Prefix' => 'dir/',
              'Marker' => $marker
       ] );
       
       printf ( "RequestId:%s\n", $resp ['RequestId'] );
       foreach ( $resp ['Contents'] as $content ) {
              printf ( "Contents[%d]\n", $index );
              printf ( "Key:%s\n", $content ['Key'] );
              printf ( "LastModified:%s\n", $content ['LastModified'] );
              printf ( "ETag:%s\n", $content ['ETag'] );
              printf ( "Size:%s\n", $content ['Size'] );
              printf ( "Owner[ID]:%s\n", $content ['Owner'] ['ID'] );
              printf ( "StorageClass:%s\n", $content ['StorageClass'] );
              $index ++;
       }
       $marker = $resp['NextMarker'];    
}while($resp['IsTruncated']);

Listing All Objects According to Folders in a Bucket

Sample code:

// Import the dependency library.
require 'vendor/autoload.php';
// Import the SDK code library during source code installation.
// require 'obs-autoloader.php';
// Declare the namespace.
use Obs\ObsClient;
// Create an instance of ObsClient.
$obsClient = new ObsClient ( [ 
      //Obtain an AK/SK pair using environment variables or import the AK/SK pair in other ways. Using hard coding may result in leakage.
      //Obtain an AK/SK pair on the management console. For details, see https://support.huaweicloud.com/intl/en-us/usermanual-ca/ca_01_0003.html.      'key' => getenv('ACCESS_KEY_ID'),
      'secret' => getenv('SECRET_ACCESS_KEY'),
      'endpoint' => 'https://your-endpoint',
      'signature' => 'obs'
] );

function listObjectsByPrefix($commonPrefiexes){
       global $obsClient;
       foreach ($commonPrefiexes as $commonPrefiex){
              $resp = $obsClient->listObjects ( [
                           'Bucket' => 'bucketname',
                           // Set folder isolators to slashes (/).
                           'Delimiter' => '/',
                           'Prefix' => $commonPrefiex['Prefix']
              ] );
              printf("Objects in folder [%s]:\n", $commonPrefiex['Prefix']);
              foreach ( $resp ['Contents'] as $index => $content ) {
                     printf ( "Contents[%d]\n", $index );
                     printf ( "Key:%s\n", $content ['Key'] );
                     printf ( "LastModified:%s\n", $content ['LastModified'] );
                     printf ( "ETag:%s\n", $content ['ETag'] );
                     printf ( "Size:%s\n", $content ['Size'] );
                     printf ( "Owner[ID]:%s\n", $content ['Owner'] ['ID'] );
                     printf ( "StorageClass:%s\n", $content ['StorageClass'] );
              }
              printf("\n");
              listObjectsByPrefix($resp['CommonPrefixes']);
       }
}

$resp = $obsClient->listObjects ( [
       'Bucket' => 'bucketname',
       // Set folder isolators to slashes (/).
       'Delimiter' => '/'
] );

printf( "Objects in the root directory:\n");
foreach ( $resp ['Contents'] as $index => $content ) {
       printf ( "Contents[%d]\n", $index );
       printf ( "Key:%s\n", $content ['Key'] );
       printf ( "LastModified:%s\n", $content ['LastModified'] );
       printf ( "ETag:%s\n", $content ['ETag'] );
       printf ( "Size:%s\n", $content ['Size'] );
       printf ( "Owner[ID]:%s\n", $content ['Owner'] ['ID'] );
       printf ( "StorageClass:%s\n", $content ['StorageClass'] );
}
printf("\n");
listObjectsByPrefix($resp['CommonPrefixes']);
NOTE:
  • The sample code does not apply to scenarios where the number of objects in a folder exceeds 1000.
  • Because objects and sub-folders in a folder are to be listed and all the objects end with a slash (/), Delimiter is always a slash (/).
  • In the returned result of each recursion, Contents includes the objects in the folder and CommonPrefixes includes the sub-folders in the folder.

เราใช้คุกกี้เพื่อปรับปรุงไซต์และประสบการณ์การใช้ของคุณ การเรียกดูเว็บไซต์ของเราต่อแสดงว่าคุณยอมรับนโยบายคุกกี้ของเรา เรียนรู้เพิ่มเติม

Feedback

Feedback

Feedback

0/500

Selected Content

Submit selected content with the feedback