Selaa lähdekoodia

增加拷贝oss文件信息接口

alexzy 4 vuotta sitten
vanhempi
commit
271bfbd964
1 muutettua tiedostoa jossa 9 lisäystä ja 0 poistoa
  1. 9 0
      src/AliOssServiceInterface.php

+ 9 - 0
src/AliOssServiceInterface.php

@@ -32,4 +32,13 @@ interface AliOssServiceInterface
      */
     public function getObjectMeta(string $object);
 
+    /**
+     * 拷贝OSS文件
+     *
+     * @param string $object
+     * @param string $new_object
+     * @return mixed
+     */
+    public function copyObject(string $object, string $new_object);
+
 }