Visual Studio扩展:获取当前选中文件在解决方案资源管理器中的路径

Visual Studio Extension: Get the path of the current selected file in the Solution Explorer

我正在尝试为 visual studio 创建我的第一个扩展,到目前为止,我一直在按照本教程入门 (http://www.diaryofaninja.com/blog/2014/02/18/who-said-building-visual-studio-extensions-was-hard)。 现在,当我在解决方案资源管理器中单击一个文件时,会出现一个自定义菜单项。 我的小项目现在需要的是获取在解决方案资源管理器中选择的文件的路径,但我不明白我该怎么做。 有帮助吗?

----------------------------编辑---------------- --------------

正如 matze 所说,答案在我发布的 link 中。只是我写的时候没注意到。 与此同时,我还在这个帖子中找到了另一个可能的答案:How to get the details of the selected item in solution explorer using vs package

我在哪里找到这段代码:

foreach (UIHierarchyItem selItem in selectedItems)
            {
                ProjectItem prjItem = selItem.Object as ProjectItem;
                string filePath = prjItem.Properties.Item("FullPath").Value.ToString();
                //System.Windows.Forms.MessageBox.Show(selItem.Name + filePath);
                return filePath;
            }

因此,这里有两种获取所选文件路径的方法:)

您提到的文章中已经包含了解决方案。

在示例代码中查找 menuCommand_BeforeQueryStatus 方法。它使用 IsSingleProjectItemSelection 方法获取代表项目的 IVsHierarchy 对象以及所选项目的 id。看来您可以安全地将层次结构转换为 IVsProject 并使用它的 GetMkDocument 函数来查询项目的完整路径...

IVsHierarchy hierarchy = null;
uint itemid = VSConstants.VSITEMID_NIL;

if (IsSingleProjectItemSelection(out hierarchy, out itemid))
{
    IVsProject project;
    if ((project = hierarchy as IVsProject) != null)
    {
        string itemFullPath = null;
        project.GetMkDocument(itemid, out itemFullPath);
    }
}

我不想将文章中的整个代码复制到此答案中,但 IsSingleProjectItemSelection 函数如何获取所选项目可能会很有趣;所以我只是添加了一些注释,这可能会引导正确的方向...该方法使用全局 IVsMonitorSelection 服务的 GetCurrentSelection 方法来查询当前选定的项目。

供日后参考:

//In your async method load the DTE
var dte2 = await ServiceProvider.GetGlobalServiceAsync(typeof(SDTE)) as DTE2;
var selectedItems = dte2.SelectItems;
if(selectedItems.MultiSelect || selectedItems.Count > 1){ //Use either/or
     for(short i = 1; i <= selectedItems.Count; i++){
        //Get selected item
        var selectedItem = selectedItems[i];
        //Get associated project item (selectedItem.ProjectItem  
        //If selectedItem is a project, then selectedItem.ProjectItem will be null,
        //and selectedItem.Project will not be null.
        var projectItem = selectedItem.ProjectItem;
        //Get project for ProjectItem
        var project = projectItem.ContainingProject;
        // Or get project object if selectedItem is a project
        var sproject = selectedItem.Project;
        //Is selectedItem a physical folder?
        var isFolder = projectItem.Kind == EnvDTE.Constants.vsProjectItemKindPhysicalFolder;
        //Else, get item's folder
        var itemFolder = new FileInfo(projectItem.Properties.Item("FullPath").ToString()).Directory;
        //Find config file
        var configFiles itemFolder.GetFiles("web.config");
        var configfile = configFiles.length > 0 ? configFiles[0] : null;
        //Turn config file into ProjectItem object
        var configItem = dte2.solution.FindProjectItem(configFile.FullName);
        
     }
}

我希望有人觉得这有帮助...