Я пишу плагин vscode и хочу создать папку, используя 'explorer.newFolder' и получить имя папки, но обещание не определено, что мне делать?
export function activate(context: vscode.ExtensionContext) {
console.log('Congratulations, your extension "create-component" is now active!');
let disposable = vscode.commands.registerCommand('extension.showFileDir', async (uri) => {
const res = await vscode.commands.executeCommand('explorer.newFolder')
console.log(res); // undefined
});
context.subscriptions.push(disposable);
}
скриншот кода