Set MyExplorer = Application.ActiveExplorer
Set MySelection =
MyExplorer.Selection
x = MySelection.Count
For i = x to 1 Step -1
MySelection.Item(i).Delete
Next |
★現在のフォルダ画面ウィンドウ取得(Explorerオブジェクト)
★現在選択しているアイテム群取得(Selectionコレクション)
★現在選択しているアイテム数を取得
★アイテム数が1になるまで処理を繰り返す
★選択アイテムを削除
|