When working on an extension in VS Code,
I am attempting to activate or open a specific document from the filesystem.
I have experimented with the following code:
let testfileURI = "c:\\Users\\MKLee\\git\\Jclip-proto-private\\src\\test\\java\\kr\\ac\\jbnu\\jclip\\controller";
vscode.workspace.openTextDocument(testfileURI);
as well as
vscode.commands.executeCommand('vscode.open', testfileURI);
While these attempts do not throw any errors, they are unfortunately not effective.