tencent cloud

Smart Media Hosting

Batch Move

PDF
Modo Foco
Tamanho da Fonte
Última atualização: 2026-01-07 11:03:08

Introduction

This document provides an API overview and SDK example code for batch moving directories or files.
API
Operation Description
Batch Move Directories or Files

Batch Moving Directories or Files

Feature Overview

Used for batch moving directories or files.
When replicating projects asynchronously in large numbers, it returns HTTP 202 Accepted. When replicating projects synchronously in small numbers, it returns HTTP 200 OK (execution successful) or HTTP 207 Multi-Status (part or all execution failed).

Example Code

Start batch move
try {
//Files or folders to be batch moved
val items: List<BatchMoveItem> = listOf(
BatchMoveItem(
//Source directory, album, or file path to be moved
"fromPath",
//Target directory, album, or file path
"toPath",
//Handling method when filename conflict
ConflictStrategy.RENAME,
//Whether to move folder permissions
true
),
BatchMoveItem("fromPath", "toPath", ConflictStrategy.RENAME, false)
)
//Return batch operation result
//If it is synchronously returned: just obtain the result content directly from batchResponse.result
//If it is asynchronously returned: need to call the Query Task API to obtain the result content (generally poll the query task until the task result is queried)
val batchResponse: BatchResponse = smh.batchMove(
items = items
)
} catch (e: Exception) {
e.printStackTrace()
}
Query job For detailed usage, refer to asynchronous processing.

Ajuda e Suporte

Esta página foi útil?

comentários