Upload folder in workspace

hey can anyone help me to enable upload folder in theia workspace

@Siddharth thank you for the discussion, can you clarify on what you need exactly?

The Upload Files... command is registered with the following conditions:

Namely, the command is only available in the browser and requires that the selection is a directory/folder:

i want to upload entire folder
right now it’s only working on files

@Siddharth you’ll likely be interested in the following file theia/file-upload-service.ts at master · eclipse-theia/theia · GitHub, currently we only support the input type='file' to be able to upload files to the server. You can experiment with HTMLInputElement.webkitdirectory - Web APIs | MDN to see if it might suit your needs.