You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating a URI from a file path, always use vscode.URI.file(path), e.g vscode.URI.file('c:\\test')
Use vscode.URI.parse(uriString) when the input string is in the form scheme://authority/path
In 1.26 we discovered that several extensions probably call the 'vscode.openFolder' command with invalid file URIs:
When creating a URI from a file path, always use
vscode.URI.file(path), e.gvscode.URI.file('c:\\test')Use
vscode.URI.parse(uriString)when the input string is in the formscheme://authority/pathSee microsoft/vscode#57267 for more information or for questions.