Home > Software design >  How to get the Multi Selected files from the File Explorer in an extension command
How to get the Multi Selected files from the File Explorer in an extension command

Time:12-12

In package.json you can add a command to the File Explorer context menu.

In File Explorer you can select multiple files but my command only gets the last selected file URI as argument.

Can I get a list of all the selected files in the File Explorer?

CodePudding user response:

You could look at my extension multiple files selected in explorer menu

  • Related