Product Overview
Feature Description
Product Strengths
Use Cases
Basic Concept
API | Operation Description |
Restore recycle bin item | |
Batch recover recycle bin items |
try {//final file pathval path: String? = smh.restoreRecycledItem(// Recycle bin file IDitemId = 123456)} catch (e: Exception) {e.printStackTrace()}
try {// Return batch operation result//If it is immediate return: just obtain the result content directly from batchResponse.result//If it is asynchronous return: 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.restoreRecycledItems(// Recycle bin file id listitemIds = listOf(123456, 123459))} catch (e: Exception) {e.printStackTrace()}
피드백