0
0

More than 3 years have passed since last update.

Drive KitでHUAWEI Driveのファイルとフォルダを削除する方法

Posted at

HUAWEI Driveのファイルとフォルダの削除手順

  1. HUAWEI Driveに接続する
  2. ファイルまたはフォルダを検索し、対象のcom.huawei.cloud.services.drive.model.Fileを取得する
  3. HUAWEI DriveにオブジェクトのIDを渡し、削除命令を実行する

サンプル

private var drive: Drive? = null

fun deleteFile(target: com.huawei.cloud.services.drive.model.File) {
    drive?.let { drive ->
        val deleteFile = drive.files().delete(target.id)
        deleteFile.execute()
    }
}

GitHub

HMS Drive Kit Demo : https://github.com/Rei2020GitHub/MyPublicProject/tree/master/DriveKitDemo

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0