截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

deleteFolder.php 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. require dirname(__FILE__) . '/../vendor/autoload.php';
  3. $secretId = "COS_SECRETID"; //"云 API 密钥 SecretId";
  4. $secretKey = "COS_SECRETKEY"; //"云 API 密钥 SecretKey";
  5. $region = "ap-beijing"; //设置一个默认的存储桶地域
  6. $cosClient = new Qcloud\Cos\Client(
  7. array(
  8. 'region' => $region,
  9. 'schema' => 'https', //协议头部,默认为http
  10. 'credentials'=> array(
  11. 'secretId' => $secretId ,
  12. 'secretKey' => $secretKey)));
  13. $cos_path = "cos/folder";
  14. $nextMarker = '';
  15. $isTruncated = true;
  16. while ( $isTruncated ) {
  17. try {
  18. $result = $cosClient->listObjects(
  19. ['Bucket' => 'examplebucket-125000000', //格式:BucketName-APPID
  20. 'Delimiter' => '',
  21. 'EncodingType' => 'url',
  22. 'Marker' => $nextMarker,
  23. 'Prefix' => $cos_path,
  24. 'MaxKeys' => 1000]
  25. );
  26. $isTruncated = $result['IsTruncated'];
  27. $nextMarker = $result['NextMarker'];
  28. foreach ( $result['Contents'] as $content ) {
  29. $cos_file_path = $content['Key'];
  30. $local_file_path = $content['Key'];
  31. // 按照需求自定义拼接下载路径
  32. try {
  33. $cosClient->deleteObject(array(
  34. 'Bucket' => 'examplebucket-125000000', //格式:BucketName-APPID
  35. 'Key' => $cos_file_path,
  36. ));
  37. echo ( $cos_file_path . "\n" );
  38. } catch ( \Exception $e ) {
  39. echo( $e );
  40. }
  41. }
  42. } catch ( \Exception $e ) {
  43. echo( $e );
  44. }
  45. }