我正在尝试在Visual Studio代码中获取当前的项目文件夹路径,但无法正常工作。我已经在Google中进行了搜索,但没有用。有人可以帮助我吗?
var vscode = require("vscode");
var path = require("path");
function activate(context) {
var currentlyOpenfileprojectname =
vscode.window.activeTextEditor.document.uri.fsPath;
}