tencentcloud-sdk-nodejs-cfs 4.1.100 → 4.1.103
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -3050,7 +3050,9 @@ export interface DoDirectoryOperationRequest {
|
|
|
3050
3050
|
*/
|
|
3051
3051
|
FileSystemId: string;
|
|
3052
3052
|
/**
|
|
3053
|
-
* create
|
|
3053
|
+
* create:创建目录,等同于mkdir。
|
|
3054
|
+
check:确认目录是否存在,等同于stat。
|
|
3055
|
+
move:对文件/目录进行重命名,等同于mv。
|
|
3054
3056
|
*/
|
|
3055
3057
|
OpetationType: string;
|
|
3056
3058
|
/**
|
|
@@ -3061,4 +3063,8 @@ export interface DoDirectoryOperationRequest {
|
|
|
3061
3063
|
* 创建目录的权限,若不传,默认为0755 若Operation Type为check,此值无实际意义
|
|
3062
3064
|
*/
|
|
3063
3065
|
Mode?: string;
|
|
3066
|
+
/**
|
|
3067
|
+
* mv操作的目标目录名称;如果是turbo文件系统必须以/cfs/开头
|
|
3068
|
+
*/
|
|
3069
|
+
DestPath?: string;
|
|
3064
3070
|
}
|